-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.82 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
{
"name": "@celldl/viewer",
"version": "0.20260822.0",
"author": {
"name": "David Brooks",
"email": "d.brooks@auckland.ac.nz"
},
"bugs": {
"url": "https://github.com/CellDL/CellDLViewer/issues"
},
"description": "A Web-based viewer for bondgraph models generated from CellDL files.",
"files": [
"dist",
"README.md",
"LICENSE.txt"
],
"keywords": [
"vue",
"component",
"bg-rdf",
"celldl",
"cellml"
],
"license": "Apache-2.0",
"module": "dist/CellDLViewer.es.js",
"productName": "CellDLViewer",
"repository": {
"type": "git",
"url": "git+https://github.com/CellDL/CellDLViewer.git"
},
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/CellDLViewer.es.js"
},
"./style.css": "./dist/CellDLViewer.css"
},
"scripts": {
"build": "vite --config vite.config.ts build app",
"build:lib": "vite build --config vite.lib.config.ts",
"clean": "bun scripts/clean.js",
"dev": "vite --config vite.config.ts app",
"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",
"start": "bun run build && vite preview",
"version:new": "bun scripts/version.js"
},
"dependencies": {
"@atomic-ehr/ucum": "^0.2.5",
"@celldl/metadata": "^1.20260822.0",
"@celldl/rdf": "^1.20260822.0",
"@vueuse/core": "14.3.0",
"primeicons": "^7.0.0",
"primevue": "4.2.5",
"systeminformation": "^5.27.11",
"transformation-matrix": "^3.1.0",
"ua-parser-js": "^2.0.8",
"vue": "3.5.40",
"vue-tippy": "^6.7.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@primeuix/themes": "^2.0.2",
"@primevue/auto-import-resolver": "4.2.5",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^26.2.0",
"@types/svg-intersections": "^0.4.4",
"@typescript/typescript6": "^6.0.2",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "^10.5.4",
"isomorphic-fetch": "^3.0.0",
"pug": "^3.0.3",
"pug-plain-loader": "^1.1.0",
"tailwindcss": "^4.3.3",
"tailwindcss-primeui": "^0.6.1",
"tslib": "^2.8.1",
"typescript": "^7.0.2",
"typescript-6": "npm:typescript@^6.0.3",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.2.0",
"vite-plugin-dts": "^5.0.3",
"vue-tsc": "^3.3.8"
}
}