-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.14 KB
/
package.json
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
{
"name": "usepython",
"version": "0.1.0",
"description": "A Python scripts runner composable",
"repository": "https://github.com/synw/usepython",
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"docs": "typedoc --plugin typedoc-plugin-markdown --entryPointStrategy expand"
},
"dependencies": {
"nanostores": "^0.10.0",
"pyodide": "^0.25.0"
},
"devDependencies": {
"@qortal/rollup-plugin-web-worker-loader": "^1.6.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.28",
"highlight.js": "^11.9.0",
"rollup": "^4.13.0",
"tslib": "^2.6.2",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^5.4.2"
},
"files": [
"dist"
],
"main": "./dist/py.min.js",
"module": "./dist/py.esm.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/py.esm.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}