-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
166 lines (166 loc) · 4.4 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "@vcmap/ui",
"version": "6.0.13",
"author": "Virtual City Systems",
"license": "MIT",
"scripts": {
"start": "vite",
"test": "vitest",
"coverage": "vitest run --coverage",
"coverage:gitlab": "vitest run --coverage --reporter junit --outputFile test-report.xml",
"build-preview": "node build/buildPreview.js",
"preview": "vite preview",
"build": "node build/build.js",
"build-types": "node build/buildTypes.js",
"bundle": "node build/bundle.js",
"lint:js": "eslint . --ext .vue,.js,.cjs,.mjs,.ts,.cts,.mts",
"lint:prettier": "prettier --check .",
"lint:types": "node build/lintTypes.js",
"lint": "npm run lint:js && npm run lint:prettier && npm run lint:types",
"format": "prettier --write --list-different . && npm run lint:js -- --fix",
"prepack": "node build/build.js && node build/buildTypes.js",
"install-plugins": "cd plugins && npm i --omit peer --no-package-lock --force",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview"
},
"repository": {
"type": "git",
"url": "https://github.com/virtualcitySYSTEMS/map-ui.git"
},
"files": [
"index.js",
"index.d.ts",
"index.html",
"app.config.json",
"tsconfig.json",
"dist/",
"src/",
"plugins/",
"public/",
"lib/",
"build/",
"config/",
"!plugins/node_modules/"
],
"dependencies": {
"@intlify/core-base": "^9.13.1",
"@vcsuite/check": "^2.1.0",
"@vcsuite/logger": "^1.0.1",
"@vcsuite/parsers": "^2.0.1",
"dompurify": "^3.1.6",
"fast-deep-equal": "^3.1.3",
"marked": "^14.0.0",
"semver": "^7.6.3",
"uuid": "^10.0.0",
"vue-i18n": "^9.13.1"
},
"peerDependencies": {
"@vcmap-cesium/engine": "^11.0.2",
"@vcmap/core": "^6.0.7",
"ol": "^10.2.1",
"vue": "~3.4.38",
"vuetify": "^3.7.3"
},
"devDependencies": {
"@histoire/plugin-vue": "^0.17.17",
"@vcmap/rollup-plugin-vcs-ol": "^1.0.2",
"@vcsuite/eslint-config": "^3.0.5",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.3",
"@vue/test-utils": "^2.4.6",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-vuetify": "^2.4.0",
"histoire": "^0.17.17",
"jest-canvas-mock": "^2.5.2",
"jsdoc": "^4.0.3",
"jsdoc-plugin-intersection": "^1.0.4",
"jsdoc-plugin-typescript": "^2.2.1",
"jsdom": "^25.0.1",
"resize-observer-polyfill": "1.5.1",
"rollup-plugin-strip-pragma": "^1.0.0",
"sass": "^1.80.2",
"tar": "^7.4.3",
"typescript": "^5.4.5",
"vite": "^5.4.9",
"vite-plugin-vuetify": "^2.0.4",
"vitest": "^2.1.3",
"vue-tsc": "^2.1.6"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"v-deep"
]
}
]
}
},
"eslintConfig": {
"root": true,
"extends": [
"@vcsuite/eslint-config/vue",
"plugin:vuetify/base"
],
"settings": {
"import/resolver": {
"alias": {
"map": [
[
"@vcmap/ui",
"./index.js"
]
]
}
}
},
"rules": {
"vue/no-v-model-argument": "off",
"jsdoc/check-tag-names": "off"
}
},
"eslintIgnore": [
"*.d.ts",
"dist",
"exampleData",
"lib",
"coverage",
"docs",
"*timestamp-*.mjs"
],
"prettier": "@vcsuite/eslint-config/prettier.js",
"browserslist": [
"last 2 Chrome versions",
"not Chrome < 116",
"last 2 Safari versions",
"not Safari < 15",
"last 2 iOS versions",
"not iOS < 15",
"last 2 Firefox versions",
"not Firefox < 114",
"last 2 Edge versions",
"not Edge < 116"
],
"engines": {
"node": ">=18.12.0",
"npm": ">=9.0.0"
},
"type": "module",
"types": "index.d.ts",
"main": "index.js",
"exports": {
".": "./index.js",
"./config/*.json": "./config/*.json",
"./src/assets/logo.svg": "./src/assets/logo.svg",
"./src/assets/logo-mobile.svg": "./src/assets/logo-mobile.svg",
"./build/commonViteConfig.js": "./build/commonViteConfig.js",
"./build/buildHelpers.js": "./build/buildHelpers.js",
"./build/getPluginProxies.js": "./build/getPluginProxies.js",
"./build/determineHost.js": "./build/determineHost.js",
"./src/styles/variables.scss": "./src/styles/variables.scss"
}
}