@celldl/viewer 0.20260730.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +201 -0
- package/README.md +86 -0
- package/dist/CellDLViewer-Cyo8fJde.js +1463 -0
- package/dist/CellDLViewer-Cyo8fJde.js.map +1 -0
- package/dist/CellDLViewer.es.js +915 -0
- package/dist/CellDLViewer.es.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/vendor-BsdU7enb.js +14131 -0
- package/dist/vendor-BsdU7enb.js.map +1 -0
- package/dist/viewer.css +1 -0
- package/package.json +90 -0
package/package.json
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@celldl/viewer",
|
|
3
|
+
"version": "0.20260730.0",
|
|
4
|
+
"author": {
|
|
5
|
+
"name": "David Brooks",
|
|
6
|
+
"email": "d.brooks@auckland.ac.nz"
|
|
7
|
+
},
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://github.com/CellDL/CellDLViewer/issues"
|
|
10
|
+
},
|
|
11
|
+
"description": "A Web-based viewer for bondgraph models generated from CellDL files.",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE.txt"
|
|
16
|
+
],
|
|
17
|
+
"keywords": [
|
|
18
|
+
"vue",
|
|
19
|
+
"component",
|
|
20
|
+
"bg-rdf",
|
|
21
|
+
"celldl",
|
|
22
|
+
"cellml"
|
|
23
|
+
],
|
|
24
|
+
"license": "Apache-2.0",
|
|
25
|
+
"module": "dist/CellDLViewer.es.js",
|
|
26
|
+
"productName": "CellDLViewer",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/CellDL/CellDLViewer.git"
|
|
30
|
+
},
|
|
31
|
+
"type": "module",
|
|
32
|
+
"types": "dist/index.d.ts",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"import": "./dist/CellDLViewer.es.js"
|
|
37
|
+
},
|
|
38
|
+
"./style.css": "./dist/CellDLViewer.css"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "vite --config vite.config.ts build app",
|
|
42
|
+
"build:dev": "vite --config vite.config.ts build app --base /",
|
|
43
|
+
"build:lib": "vite build --config vite.lib.config.ts && cp index.d.ts dist/index.d.ts",
|
|
44
|
+
"clean": "bun scripts/clean.js",
|
|
45
|
+
"dev": "vite --config vite.config.ts app",
|
|
46
|
+
"format": "bunx --bun biome format --fix --max-diagnostics=none",
|
|
47
|
+
"format:check": "bunx --bun biome format --max-diagnostics=none",
|
|
48
|
+
"lint": "bunx --bun biome lint --fix --error-on-warnings --max-diagnostics=none",
|
|
49
|
+
"postinstall": "bash ./scripts/postinstall.sh",
|
|
50
|
+
"start": "bun run build && vite preview",
|
|
51
|
+
"version:new": "bun scripts/version.js"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@primeuix/themes": "^2.0.2",
|
|
55
|
+
"primevue": "4.2.5",
|
|
56
|
+
"vue": "3.4.21"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@atomic-ehr/ucum": "^0.2.5",
|
|
60
|
+
"@jeswr/pretty-turtle": "^1.8.2",
|
|
61
|
+
"@primeuix/themes": "^2.0.2",
|
|
62
|
+
"@primevue/auto-import-resolver": "4.2.5",
|
|
63
|
+
"@vueuse/core": "14.1.0",
|
|
64
|
+
"oxigraph": "^0.5.2",
|
|
65
|
+
"primeicons": "^7.0.0",
|
|
66
|
+
"primevue": "4.2.5",
|
|
67
|
+
"systeminformation": "^5.27.11",
|
|
68
|
+
"transformation-matrix": "^3.1.0",
|
|
69
|
+
"ua-parser-js": "^2.0.8",
|
|
70
|
+
"vue": "3.4.21",
|
|
71
|
+
"vue-tippy": "^6.7.1"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@biomejs/biome": "^2.3.11",
|
|
75
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
76
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
77
|
+
"@types/node": "^25.0.9",
|
|
78
|
+
"@types/svg-intersections": "^0.4.4",
|
|
79
|
+
"@vitejs/plugin-vue": "^6.0.3",
|
|
80
|
+
"@vue/tsconfig": "^0.8.1",
|
|
81
|
+
"autoprefixer": "^10.4.23",
|
|
82
|
+
"isomorphic-fetch": "^3.0.0",
|
|
83
|
+
"pug": "^3.0.3",
|
|
84
|
+
"pug-plain-loader": "^1.1.0",
|
|
85
|
+
"tailwindcss": "^4.1.18",
|
|
86
|
+
"tailwindcss-primeui": "^0.6.1",
|
|
87
|
+
"unplugin-vue-components": "^31.0.0",
|
|
88
|
+
"vite": "^7.2.7"
|
|
89
|
+
}
|
|
90
|
+
}
|