forked from ABI-Software/flatmapvuer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.69 KB
/
package.json
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
{
"name": "@abi-software/flatmapvuer",
"version": "1.6.1",
"license": "Apache-2.0",
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/ABI-Software/flatmapvuer.git"
},
"scripts": {
"serve": "vite --host --force",
"build-bundle": "vite build",
"build-static": "vite build -c vite.static-build.js",
"test": "cypress run --component",
"cypress:open": "cypress open",
"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",
"changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
"version": "npm run build-bundle;npm run changelog; git add CHANGELOG.md",
"vuese-gen": "node vuese-generator.js",
"vuese-watch": "node vuese-generator.js watch",
"docs:dev": "vitepress dev docs",
"docs:watch": "concurrently \"npm run vuese-watch\" \"npm run docs:dev\"",
"docs:build": "npm run vuese-gen; vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"type": "module",
"main": "./dist/flatmapvuer.umd.cjs",
"module": "./dist/flatmapvuer.js",
"exports": {
".": {
"import": "./dist/flatmapvuer.js",
"require": "./dist/flatmapvuer.umd.cjs"
},
"./dist/style.css": "./dist/style.css",
"./src/*": "./src/*"
},
"dependencies": {
"@abi-software/flatmap-viewer": "3.2.10",
"@abi-software/map-utilities": "^1.2.1",
"@abi-software/sparc-annotation": "0.3.2",
"@abi-software/svg-sprite": "^1.0.1",
"@element-plus/icons-vue": "^2.3.1",
"css-element-queries": "^1.2.2",
"element-plus": "2.8.4",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"unplugin-vue-components": "^0.26.0",
"vue": "^3.4.21"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.6.2",
"@vuese/markdown-render": "^2.11.3",
"auto-changelog": "^2.4.0",
"babel-eslint": "^10.1.0",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"cypress": "^13.6.6",
"cypress-multi-reporters": "^1.6.4",
"cypress-wait-until": "^2.0.1",
"eslint": "^8.56.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-vue": "^9.19.2",
"mochawesome": "^7.1.3",
"sass": "^1.69.5",
"vite": "^5.0.10",
"vitepress": "^1.0.0-rc.44",
"vue-docgen-api": "^4.79.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}