-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.77 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.77 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
109
110
{
"name": "@celldl/editor",
"version": "0.20260626.0",
"author": {
"name": "David Brooks",
"email": "d.brooks@auckland.ac.nz"
},
"bugs": {
"url": "https://github.com/CellDL/CellDLEditorComponent/issues"
},
"description": "A Vue 3 component for the CellDL Editor.",
"files": [
"dist",
"README.md",
"LICENSE.txt"
],
"keywords": [
"vue",
"component",
"celldl",
"bg-rdf"
],
"license": "Apache-2.0",
"module": "dist/CellDLEditor.es.js",
"productName": "CellDLEditor",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CellDL/CellDLEditorComponent.git"
},
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/CellDLEditor.es.js"
},
"./style.css": "./dist/CellDLEditor.css"
},
"scripts": {
"build": "vite --config vite.config.ts build app && bun scripts/generate.version.js",
"build:dev": "vite --config vite.config.ts build app --base / && bun scripts/generate.version.js",
"build:lib": "vite build --config vite.lib.config.ts",
"clean": "bun scripts/clean.js",
"dev": "vite --config vite.config.ts app",
"docs": "bunx typedoc",
"format": "bunx --bun biome format --config-path ./biome.json --fix --max-diagnostics=none",
"format:check": "bunx --bun biome format --config-path ./biome.json --max-diagnostics=none",
"lint": "bunx --bun biome lint --config-path ./biome.json --fix --error-on-warnings --max-diagnostics=none",
"start": "cd app && bun run build:dev && 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",
"@ctrl/tinycolor": "^4.2.0",
"@mathjax/src": "^4.1.3",
"@vueuse/core": "14.3.0",
"buffer": "^6.0.3",
"flatbush": "^4.5.0",
"graphology": "^0.26.0",
"isomorphic-fetch": "^3.0.0",
"jsonschema": "^1.5.0",
"mini-svg-data-uri": "^1.4.4",
"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.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/rbush": "^4.0.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",
"pug": "^3.0.3",
"pug-plain-loader": "^1.1.0",
"tailwindcss": "^4.3.3",
"tailwindcss-primeui": "^0.6.1",
"tslib": "^2.8.1",
"typedoc": "^0.28.19",
"typedoc-github-theme": "^0.4.0",
"typedoc-plugin-inline-sources": "^1.3.0",
"typedoc-plugin-missing-exports": "^4.1.3",
"typedoc-plugin-vue": "^1.5.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"
}
}