-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "pyproc",
"version": "0.0.10",
"description": "브라우저 파이썬 프로세스 OS - 서버 없이 브라우저 탭에서 도는 진짜 런타임 파이썬(프로세스·병렬·복원 리액티브·머신 이미지). Real Python runtime in the browser tab: processes, parallelism, checkpoint/time-travel, portable .pymachine images.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/eddmpython/pyproc.git"
},
"homepage": "https://github.com/eddmpython/pyproc#readme",
"bugs": {
"url": "https://github.com/eddmpython/pyproc/issues"
},
"main": "index.js",
"types": "./index.d.ts",
"bin": {
"pyproc-assets": "./scripts/assetManifest.mjs"
},
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./runtime": {
"types": "./src/runtime/index.d.ts",
"default": "./src/runtime/index.js"
},
"./history": {
"types": "./src/state/index.d.ts",
"default": "./src/state/index.js"
},
"./machine": {
"types": "./src/machine/index.d.ts",
"default": "./src/machine/index.js"
},
"./worker": "./src/processOs/worker.js",
"./assets": {
"types": "./src/runtime/assets.d.ts",
"default": "./src/runtime/assets.js"
},
"./gpu": {
"types": "./src/capabilities/gpuCompute.d.ts",
"default": "./src/capabilities/gpuCompute.js"
},
"./socket": {
"types": "./src/capabilities/socketBridge.d.ts",
"default": "./src/capabilities/socketBridge.js"
},
"./wasi": {
"types": "./src/runtime/engines/wasi/wasiSession.d.ts",
"default": "./src/runtime/engines/wasi/wasiSession.js"
}
},
"files": [
"index.js",
"index.d.ts",
"src",
"scripts/assetManifest.mjs",
"README.md",
"README.ko.md",
"LICENSE"
],
"scripts": {
"test": "node tests/run.mjs",
"test:types": "npx -y -p typescript@5 tsc -p tests/tsconfig.json",
"test:contracts": "node tests/contracts/run.mjs",
"assets:provenance": "node scripts/assetProvenance.mjs",
"test:package": "node tests/packageConsumer.mjs",
"test:consumer": "node tests/browser/productConsumer.mjs",
"test:web-computer": "node scripts/prepareWebComputerAssets.mjs && node tests/browser/webComputerProduct.mjs",
"test:mcp": "node tests/browser/mcpSandbox.mjs",
"test:browser": "node tests/browser/run.mjs",
"test:examples": "node tests/browser/examples.mjs",
"bench:speed": "node tests/browser/speedBench.mjs",
"bench:artifact": "node tests/browser/benchArtifact.mjs",
"bench:compare": "node tests/browser/benchCompare.mjs",
"assets:manifest": "node scripts/assetManifest.mjs --pretty",
"assets:web-computer": "node scripts/prepareWebComputerAssets.mjs",
"assets:buildroot": "node scripts/buildroot/buildGuest.mjs",
"serve": "node scripts/staticServer.mjs",
"fetch:engine": "node scripts/fetchEngine.mjs",
"mcp:sandbox": "node scripts/mcpSandboxServer.mjs"
},
"keywords": [
"pyodide",
"python",
"browser",
"wasm",
"process",
"parallel",
"reactive",
"runtime"
],
"license": "MPL-2.0"
}