@secure-exec/browser 0.0.0-nathan-docs-sdk-expansion.c9c2e4e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/driver.d.ts +91 -0
- package/dist/driver.js +350 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +5 -0
- package/dist/os-filesystem.d.ts +47 -0
- package/dist/os-filesystem.js +402 -0
- package/dist/permission-validation.d.ts +15 -0
- package/dist/permission-validation.js +62 -0
- package/dist/runtime-driver.d.ts +34 -0
- package/dist/runtime-driver.js +459 -0
- package/dist/runtime.d.ts +222 -0
- package/dist/runtime.js +377 -0
- package/dist/sync-bridge.d.ts +46 -0
- package/dist/sync-bridge.js +49 -0
- package/dist/worker-adapter.d.ts +21 -0
- package/dist/worker-adapter.js +41 -0
- package/dist/worker-protocol.d.ts +93 -0
- package/dist/worker-protocol.js +1 -0
- package/dist/worker.d.ts +1 -0
- package/dist/worker.js +1399 -0
- package/package.json +80 -0
package/package.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@secure-exec/browser",
|
|
3
|
+
"version": "0.0.0-nathan-docs-sdk-expansion.c9c2e4e",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./internal/driver": {
|
|
19
|
+
"types": "./dist/driver.d.ts",
|
|
20
|
+
"import": "./dist/driver.js",
|
|
21
|
+
"default": "./dist/driver.js"
|
|
22
|
+
},
|
|
23
|
+
"./internal/runtime-driver": {
|
|
24
|
+
"types": "./dist/runtime-driver.d.ts",
|
|
25
|
+
"import": "./dist/runtime-driver.js",
|
|
26
|
+
"default": "./dist/runtime-driver.js"
|
|
27
|
+
},
|
|
28
|
+
"./internal/worker": {
|
|
29
|
+
"types": "./dist/worker.d.ts",
|
|
30
|
+
"import": "./dist/worker.js",
|
|
31
|
+
"default": "./dist/worker.js"
|
|
32
|
+
},
|
|
33
|
+
"./internal/worker-protocol": {
|
|
34
|
+
"types": "./dist/worker-protocol.d.ts",
|
|
35
|
+
"import": "./dist/worker-protocol.js",
|
|
36
|
+
"default": "./dist/worker-protocol.js"
|
|
37
|
+
},
|
|
38
|
+
"./internal/permission-validation": {
|
|
39
|
+
"types": "./dist/permission-validation.d.ts",
|
|
40
|
+
"import": "./dist/permission-validation.js",
|
|
41
|
+
"default": "./dist/permission-validation.js"
|
|
42
|
+
},
|
|
43
|
+
"./internal/os-filesystem": {
|
|
44
|
+
"types": "./dist/os-filesystem.d.ts",
|
|
45
|
+
"import": "./dist/os-filesystem.js",
|
|
46
|
+
"default": "./dist/os-filesystem.js"
|
|
47
|
+
},
|
|
48
|
+
"./internal/worker-adapter": {
|
|
49
|
+
"types": "./dist/worker-adapter.d.ts",
|
|
50
|
+
"import": "./dist/worker-adapter.js",
|
|
51
|
+
"default": "./dist/worker-adapter.js"
|
|
52
|
+
},
|
|
53
|
+
"./internal/runtime": {
|
|
54
|
+
"types": "./dist/runtime.d.ts",
|
|
55
|
+
"import": "./dist/runtime.js",
|
|
56
|
+
"default": "./dist/runtime.js"
|
|
57
|
+
},
|
|
58
|
+
"./internal/sync-bridge": {
|
|
59
|
+
"types": "./dist/sync-bridge.d.ts",
|
|
60
|
+
"import": "./dist/sync-bridge.js",
|
|
61
|
+
"default": "./dist/sync-bridge.js"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"check-types": "tsc --noEmit",
|
|
66
|
+
"build": "tsc",
|
|
67
|
+
"test:browser": "node ./scripts/run-browser-tests.mjs",
|
|
68
|
+
"test": "pnpm build"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"sucrase": "^3.35.0"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@playwright/test": "^1.54.2",
|
|
75
|
+
"@types/node": "^22.10.2",
|
|
76
|
+
"typescript": "^5.7.2",
|
|
77
|
+
"vitest": "^2.1.8"
|
|
78
|
+
},
|
|
79
|
+
"description": "Browser driver primitives for secure-exec."
|
|
80
|
+
}
|