-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
34 lines (34 loc) · 1.17 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
{
"name": "vfm",
"private": true,
"scripts": {
"dev": "concurrently \"pnpm:dev:docs\" \"pnpm:dev:viteplay\"",
"dev:docs": "pnpm --filter docs dev",
"build:docs": "pnpm --filter docs build",
"generate:docs": "pnpm --filter docs generate",
"dev:viteplay": "pnpm --filter viteplay dev",
"build:viteplay": "pnpm --filter viteplay build",
"dev:vfm": "pnpm --filter vue-final-modal dev",
"build:vfm": "pnpm --filter vue-final-modal build",
"test:vfm": "pnpm --filter vue-final-modal cypress:run",
"release:vfm": "pnpm --filter vue-final-modal release",
"lint": "eslint . --ext=.ts,.vue --fix",
"typecheck": "pnpm --parallel typecheck",
"prepare:module": "pnpm --filter @vue-final-modal/nuxt dev:prepare && pnpm --filter @vue-final-modal/nuxt prepack",
"postinstall": "pnpm build:vfm && pnpm prepare:module"
},
"dependencies": {
"vue": "^3.3.7"
},
"devDependencies": {
"@antfu/eslint-config": "^0.37.0",
"@types/node": "^20.10.0",
"@vitejs/plugin-vue": "^4.5.0",
"concurrently": "^8.2.2",
"eslint": "^8.36.0",
"pnpm": "^8.11.0",
"typescript": "^5.3.2",
"vite": "^5.0.12",
"vue-tsc": "1.8.20"
}
}