-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.52 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
{
"name": "@celldl/editor-app",
"version": "0.20260626.0",
"author": {
"name": "David Brooks",
"email": "d.brooks@auckland.ac.nz"
},
"binary": {
"napi_versions": [
9
]
},
"bugs": {
"url": "https://github.com/CellDL/CellDLEditor/issues"
},
"description": "An editor for CellDL.",
"license": "Apache-2.0",
"main": "./out/main/index.cjs",
"private": true,
"productName": "CellDLEditor",
"repository": {
"type": "git",
"url": "git+https://github.com/CellDL/CellDLEditor.git"
},
"type": "module",
"scripts": {
"archive:web": "bun src/renderer/scripts/archive.web.js",
"build": "electron-vite build",
"build:web": "cd ./src/renderer && vite --config vite.config.ts build && bun scripts/generate.version.js",
"clean": "bun src/renderer/scripts/clean.js",
"debug": "electron-vite --inspect --sourcemap dev --watch",
"dev": "electron-vite dev --watch",
"dev:web": "cd ./src/renderer && vite dev",
"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",
"release": "electron-builder",
"start": "electron-vite preview",
"start:web": "bun build:web && cd ./src/renderer && vite preview",
"version:new": "bun src/renderer/scripts/version.js"
},
"bun": {
"overrides": {
"vue": "3.4.21"
}
},
"peerDependencies": {
"@primeuix/themes": "^2.0.2",
"primevue": "4.2.5",
"vue": "3.4.21"
},
"dependencies": {
"@atomic-ehr/ucum": "^0.2.5",
"@celldl/editor": "^0.20260626.0",
"@celldl/editor-python-tools": "^0.20260412.0",
"@celldl/editor-rdf": "^0.20260412.0",
"@ctrl/tinycolor": "^4.2.0",
"@mathjax/src": "^4.0.0",
"@primeuix/themes": "^2.0.2",
"@primevue/auto-import-resolver": "4.2.5",
"@vueuse/core": "14.1.0",
"buffer": "^6.0.3",
"flatbush": "^4.5.0",
"isomorphic-fetch": "^3.0.0",
"jsonschema": "^1.5.0",
"primeicons": "^7.0.0",
"primevue": "4.2.5",
"rbush": "^4.0.1",
"svg-intersections": "github:dbrnz/svg-intersections#fix-numbers",
"svg-path-commander": "^2.1.11",
"systeminformation": "^5.27.11",
"transformation-matrix": "^3.1.0",
"ua-parser-js": "^2.0.8",
"vue": "3.4.21",
"vue-tippy": "^6.7.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/tsconfig": "^2.0.0",
"@electron-toolkit/utils": "^4.0.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.0.9",
"@types/rbush": "^4.0.0",
"@types/svg-intersections": "^0.4.4",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "^10.4.23",
"electron": "^40.0.0",
"electron-builder": "^26.4.0",
"electron-conf": "^1.3.0",
"electron-updater": "^6.7.3",
"electron-vite": "^5.0.0",
"node-addon-api": "^8.5.0",
"pug": "^3.0.3",
"pug-plain-loader": "^1.1.0",
"tailwindcss": "^4.1.18",
"tailwindcss-primeui": "^0.6.1",
"unplugin-vue-components": "^31.0.0",
"vite": "^7.2.7"
}
}