-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "vue-types-monorepo",
"description": "VueTypes Monorepo",
"author": "Marco Solazzi",
"license": "MIT",
"homepage": "https://vue-types.codeful.dev/",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"pnpm": "^9.0.0"
},
"scripts": {
"examples:dev": "pnpm --filter=vue-types run build && pnpm --filter=examples start",
"docs:dev": "pnpm --filter=docs run dev",
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"ci:version": "pnpm changeset version && pnpm install --lockfile-only",
"ci:publish": "git status && pnpm -r publish"
},
"repository": {
"type": "git",
"url": "https://github.com/dwightjack/vue-types.git"
},
"bugs": "https://github.com/dwightjack/vue-types/issues",
"devDependencies": {
"@changesets/cli": "2.28.1",
"@eslint/js": "9.21.0",
"@vitest/coverage-v8": "2.1.9",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"happy-dom": "15.11.7",
"lefthook": "1.11.2",
"prettier": "3.5.2",
"publint": "^0.3.4",
"typescript": "5.7.3",
"typescript-eslint": "8.25.0",
"vite": "5.4.14",
"vitest": "2.1.9"
},
"dependencies": {
"eslint": "9.21.0"
}
}