-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
executable file
·49 lines (49 loc) · 1.91 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
{
"name": "vue-yandex-maps-monorepo",
"private": true,
"type": "module",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"build": "yarn workspace vue-yandex-maps build",
"test:vue2": "yarn workspace vue-yandex-maps build:package-only && yarn workspace example-vue2 serve",
"test:nuxt2": "yarn workspace vue-yandex-maps build:package-only && yarn workspace example-nuxt2 dev",
"test:vue3": "yarn workspace vue-yandex-maps build:package-only && yarn workspace example-vue3 dev",
"test:nuxt3": "yarn workspace vue-yandex-maps build && yarn workspace example-nuxt3 dev",
"lint": "eslint . --max-warnings 0",
"lint:fix": "yarn lint --fix",
"check": "yarn lint && yarn build && yarn docs:build",
"publish": "yarn lint && yarn build && yarn workspace vue-yandex-maps npm:publish"
},
"dependencies": {
"@yandex/ymaps3-types": "^1.0.15542062",
"examples": "workspace:^",
"puppeteer": "^23.11.1",
"vue-yandex-maps": "workspace:^"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@nuxt/eslint": "^0.7.4",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vue/eslint-config-airbnb": "^8.0.0",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-vue": "^9.32.0",
"typescript": "5.7.2",
"vitepress": "^1.5.0",
"vue-eslint-parser": "^9.4.3"
},
"workspaces": [
"packages/*",
"packages/examples/*"
],
"resolutions": {
"vite-plugin-checker": "^0.8.0"
},
"packageManager": "yarn@4.5.3"
}