forked from opencor/webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.59 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
{
"author": {
"name": "Alan Garny",
"email": "a.garny@auckland.ac.nz"
},
"binary": {
"napi_versions": [
9
]
},
"bugs": {
"url": "https://github.com/opencor/webapp/issues"
},
"description": "A Web-based modelling environment for organising, editing, simulating, and analysing CellML files.",
"homepage": "https://opencor.ws/",
"license": "Apache-2.0",
"main": "./out/main/index.cjs",
"name": "@opencor/opencor",
"private": true,
"productName": "OpenCOR",
"repository": {
"type": "git",
"url": "git+https://github.com/opencor/webapp.git"
},
"type": "module",
"version": "0.20260730.0",
"engines": {
"bun": ">=1.2.0"
},
"scripts": {
"archive:web": "bun src/renderer/scripts/archive.web.ts",
"build": "bun src/renderer/scripts/libopencor.ts && electron-vite build",
"build:web": "bun --cwd src/renderer build",
"build:web:stats": "bun --cwd src/renderer build:stats",
"clean": "bun src/renderer/scripts/clean.ts",
"dependencies:update": "bun src/renderer/scripts/dependencies.update.ts",
"dev": "bun src/renderer/scripts/libopencor.ts && electron-vite dev --watch",
"dev:web": "bun --cwd src/renderer dev",
"format": "bunx --bun biome format --fix --max-diagnostics=none && clang-format -i src/renderer/src/libopencor/src/*",
"format:check": "bunx --bun biome format --max-diagnostics=none && clang-format --dry-run -Werror src/renderer/src/libopencor/src/*",
"lint": "bunx --bun biome lint --fix --error-on-warnings --max-diagnostics=none && bunx stylelint '**/*.css' --fix",
"postinstall": "bun src/renderer/scripts/ensure.electron.ts",
"release": "bun src/renderer/scripts/libopencor.ts && electron-builder",
"release:local": "bun src/renderer/scripts/libopencor.ts && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --config.mac.notarize=false --publish=never",
"start": "bun src/renderer/scripts/libopencor.ts && electron-vite preview",
"start:web": "bun --cwd src/renderer start",
"typecheck": "bun --bun src/renderer/scripts/type.check.ts --noEmit -p tsconfig.app.json",
"version:new": "bun src/renderer/scripts/version.new.ts"
},
"bun": {
"overrides": {
"vue": "3.4.21"
}
},
"peerDependencies": {
"vue": "3.4.21"
},
"dependencies": {
"@napi-rs/keyring": "^1.3.0",
"@opencor/libopencor-types": "^1.20260723.2",
"@primeuix/themes": "2.0.3",
"@primevue/auto-import-resolver": "4.2.5",
"@vueuse/core": "12.8.2",
"primeicons": "7.0.0",
"primevue": "4.2.5",
"vue": "3.4.21",
"xxhash-wasm": "^1.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@electron-toolkit/tsconfig": "^2.0.0",
"@electron-toolkit/utils": "^4.0.0",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^26.1.2",
"@types/plotly.js": "^3.0.10",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/tsconfig": "^0.9.1",
"@wasm-fmt/clang-format": "^22.1.8",
"autoprefixer": "^10.5.4",
"cmake-js": "^8.0.0",
"electron": "^43.2.0",
"electron-builder": "^26.15.3",
"electron-conf": "^1.3.0",
"electron-updater": "^6.8.9",
"electron-vite": "^5.0.0",
"esbuild": "^0.28.1",
"node-addon-api": "^8.9.0",
"postcss": "^8.5.25",
"rollup-plugin-visualizer": "^7.0.1",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
"tailwindcss": "^4.3.3",
"tailwindcss-primeui": "0.6.1",
"tar": "^7.5.22",
"typescript": "^7.0.2",
"typescript-6": "npm:typescript@^6.0.3",
"unplugin-vue-components": "^32.1.0",
"vite": "7.3.6",
"vue-tsc": "^3.3.8"
}
}