-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.46 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
{
"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"
},
"./history": "./src/state/index.js",
"./machine": "./src/machine/index.js",
"./worker": "./src/processOs/worker.js",
"./assets": "./src/runtime/assets.js",
"./gpu": "./src/capabilities/gpuCompute.js",
"./socket": "./src/capabilities/socketBridge.js",
"./wasi": "./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",
"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",
"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"
}