-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "vue-create-print-monorepo",
"version": "0.1.5",
"private": true,
"packageManager": "[email protected]",
"description": "web print for vue2.x and vue3.x",
"author": "Mutter45 <[email protected]>",
"license": "ISC",
"keywords": [
"print",
"print-vue2",
"print-vue3"
],
"scripts": {
"dev": "run-p dev:core dev:play",
"dev:play": "pnpm --filter @vue-create-print/play dev",
"dev:core": " pnpm --filter vue-create-print dev",
"docs:dev": "pnpm --filter @vue-create-print/docs dev",
"build": "run-s build:core build:docs",
"build:core": "pnpm --filter vue-create-print build",
"build:docs": "pnpm --filter @vue-create-print/docs build",
"lint": "eslint --cache .",
"lint:fix": "eslint --fix",
"prepare": "husky",
"commitlint": "commitlint --edit",
"release": "dotenv release-it --"
},
"dependencies": {
"vue": "^3.4.31",
"vue-create-print": "workspace:*"
},
"devDependencies": {
"@antfu/eslint-config": "2.22.0-beta.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^18.19.39",
"@vitejs/plugin-vue": "^5.0.5",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.4.2",
"eslint": "^9.6.0",
"eslint-plugin-format": "^0.1.2",
"globals": "^15.8.0",
"husky": "^9.0.11",
"install": "^0.13.0",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"release-it": "^17.5.0",
"release-it-pnpm": "^4.6.2",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.2.2",
"unocss": "^0.61.9",
"vite": "^5.3.3",
"vite-plugin-dts": "^3.9.1",
"vue-tsc": "^2.0.21"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}