-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "@abi-software/map-utilities",
"version": "1.8.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ABI-Software/map-utilities.git"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"scripts": {
"serve": "vite --host",
"build-bundle": "vite build",
"preview": "vite preview",
"version": "npm run build-bundle;",
"release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
"release:minor": "npm version minor; npm publish",
"release:patch": "npm version patch; npm publish"
},
"type": "module",
"main": "./dist/map-utilities.umd.cjs",
"module": "./dist/map-utilities.js",
"exports": {
".": {
"import": "./dist/map-utilities.js",
"require": "./dist/map-utilities.umd.cjs"
},
"./dist/style.css": "./dist/style.css",
"./src/*": "./src/*"
},
"dependencies": {
"@abi-software/svg-sprite": "^1.0.1",
"@element-plus/icons-vue": "^2.3.1",
"cytoscape": "^3.30.2",
"cytoscape-dagre": "^2.5.0",
"element-plus": "2.8.4",
"mitt": "^3.0.1",
"vue": "^3.4.21"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"sass": "^1.77.4",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.2.8"
}
}