-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.86 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
64
65
66
67
68
69
70
71
{
"name": "sure-icons-monorepo",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@7.2.1",
"description": "Icons Components for vue & react monorepo",
"author": {
"name": "Saul",
"email": "sure_ssk@outlook.com"
},
"license": "MIT",
"homepage": "https://github.com/suressk/sure-icons#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/suressk/sure-icons.git"
},
"bugs": "https://github.com/suressk/sure-icons/issues",
"keywords": [
"components",
"sure-ui",
"vue",
"react",
"icons"
],
"sideEffects": false,
"scripts": {
"dev:vue": "pnpm run -C ./playground/vue-pro dev",
"dev:react": "pnpm run -C ./playground/react-pro dev",
"build": "pnpm run build:vue && pnpm run build:react",
"build:vue": "pnpm run -C ./packages/vue build",
"build:react": "pnpm run -C ./packages/react build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"push": "ts-node scripts/push.ts",
"release": "ts-node scripts/release.ts"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/node": "^18.0.0",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.10",
"bumpp": "^8.2.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.18.0",
"eslint-config-suressk": "^0.1.2",
"execa": "4.0.2",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"minimist": "^1.2.6",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"semver": "^7.3.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "ts-node scripts/verify-commit.ts"
}
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": [
"eslint --fix"
]
}
}