-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "vue-lib-monorepo-template",
"version": "0.1.0",
"description": "A monorepo template for developing Vue libraries",
"author": "Thorsten Lünborg <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "pnpm -F playground dev",
"test": "pnpm --if-present -r run test",
"test-ci": "pnpm --if-present -r run test-ci",
"test-libs": "pnpm -F '@linusborg/*' run test",
"docs": "pnpm -F docs run dev",
"docs-build": "pnpm -F docs run build",
"lint": "pnpm eslint '**/*.{vue,ts,js}' --fix",
"build": "pnpm build-packages && pnpm build-playground && pnpm build-docs",
"build-packages": "pnpm -r -F '@linusborg/*' run build",
"build-playground": "pnpm --F 'playground' run build",
"build-docs": "pnpm -F 'docs' run build"
},
"packageManager": "[email protected]",
"devDependencies": {
"@linusborg/eslint-config": "^0.4.0",
"@tsconfig/node20": "^20.1.2",
"@types/node": "20.8.10",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/compiler-dom": "^3.3.8",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.53.0",
"jsdom": "^22.1.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"run-p": "^0.0.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"vue": "^3.3.8",
"vue-tsc": "^1.8.22"
},
"engines": {
"node": ">=20.9.0",
"pnpm": ">8.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
}
}