-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "demi-ui-template",
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
},
"private": true,
"version": "0.0.0",
"description": "A universal ui library template for vue2 & 3",
"main": "n/a",
"homepage": "https://github.com/enpitsuLin/demi-ui-template#readme",
"repository": {
"type": "git",
"url": "https://github.com/enpitsuLin/demi-ui-template"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "husky install",
"build": "pnpm run -C internal/build start",
"build:type": "pnpm run -C packages/components type",
"format": "prettier --write --cache .",
"clean": "pnpm --parallel run clean",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --max-warnings 0 --cache",
"test": "pnpm run test:2 && pnpm run test:3",
"test:2": "pnpm run -C packages/components test:2 --run",
"test:3": "pnpm run -C packages/components test:3 --run",
"typecheck": "pnpm run -C packages/components typecheck",
"version": "pnpm changeset version",
"release": "pnpm changeset publish"
},
"keywords": [],
"author": "enpitsulin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@demi-ui/eslint-config": "workspace:*",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"typescript": "^4.9.4",
"vue": "^3.2.45",
"vue2": "npm:vue@^2.7.14"
},
"pnpm": {
"patchedDependencies": {
"@vitejs/[email protected]": "patches/@[email protected]"
},
"peerDependencyRules": {
"ignoreMissin": [
"eslint",
"prettier"
]
}
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx}": "eslint --fix"
}
}