Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
108 lines (108 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.34 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@celldl/editor-python-tools",
"version": "0.20260412.0",
"author": {
"name": "David Brooks",
"email": "d.brooks@auckland.ac.nz"
},
"bugs": {
"url": "https://github.com/CellDL/CellDLEditorPythonTools/issues"
},
"description": "Python tools for the CellDL Editor",
"files": [
"dist",
"README.md",
"LICENSE.txt"
],
"keywords": [
"bg-rdf",
"celldl",
"pyodide",
"python"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.js",
"productName": "CellDLEditorPythonTools",
"repository": {
"type": "git",
"url": "git+https://github.com/CellDL/CellDLEditorPythonTools.git"
},
"type": "module",
"scripts": {
"build": "bun scripts/build.js",
"clean": "bun scripts/clean.js",
"format": "bunx --bun biome format --fix --max-diagnostics=none",
"format:check": "bunx --bun biome format --max-diagnostics=none",
"lint": "bunx --bun biome lint --fix --error-on-warnings --max-diagnostics=none"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"ws": "^8.19.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/adm-zip": "^0.5.7",
"@types/node": "^25.0.9",
"adm-zip": "^0.5.16",
"pyodide": "^0.29.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.2.7"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js",
"default": "./dist/node.js"
},
"./web": {
"types": "./dist/web.d.ts",
"import": "./dist/web.js",
"default": "./dist/web.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js",
"default": "./dist/vite.js"
},
"./pint-0.25-py3-none-any.whl": "./dist/pint-0.25-py3-none-any.whl",
"./lxml-6.0.2-cp313-cp313-pyodide_2025_0_wasm32.whl": "./dist/lxml-6.0.2-cp313-cp313-pyodide_2025_0_wasm32.whl",
"./mpmath-1.3.0-py3-none-any.whl": "./dist/mpmath-1.3.0-py3-none-any.whl",
"./flexparser-0.4-py3-none-any.whl": "./dist/flexparser-0.4-py3-none-any.whl",
"./networkx-3.5-py3-none-any.whl": "./dist/networkx-3.5-py3-none-any.whl",
"./sympy-1.14.0-py3-none-any.whl": "./dist/sympy-1.14.0-py3-none-any.whl",
"./flexcache-0.3-py3-none-any.whl": "./dist/flexcache-0.3-py3-none-any.whl",
"./lark-1.3.1-py3-none-any.whl": "./dist/lark-1.3.1-py3-none-any.whl",
"./bg2cellml-0.10.2-py3-none-any.whl": "./dist/bg2cellml-0.10.2-py3-none-any.whl",
"./platformdirs-4.5.0-py3-none-any.whl": "./dist/platformdirs-4.5.0-py3-none-any.whl",
"./typing_extensions-4.15.0-py3-none-any.whl": "./dist/typing_extensions-4.15.0-py3-none-any.whl",
"./ucumvert-0.3.0-py3-none-any.whl": "./dist/ucumvert-0.3.0-py3-none-any.whl",
"./pyodide.asm.wasm": "./dist/pyodide.asm.wasm",
"./python_stdlib.zip": "./dist/python_stdlib.zip",
"./pyodide.asm.js": "./dist/pyodide.asm.js",
"./pyodide-lock.json": "./dist/pyodide-lock.json",
"./pyodide.web.asm.js": "./dist/pyodide.web.asm.js"
},
"typesVersions": {
"*": {
"node": [
"./dist/node.d.ts"
],
"web": [
"./dist/web.d.ts"
],
"vite": [
"./dist/vite.d.ts"
]
}
}
}