This repository was archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.28 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.28 KB
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": "devui-cli",
"version": "0.0.1",
"description": "A scaffold of devui.",
"scripts": {
"dev": "pnpm dev --filter @devui/cli-test",
"preinstall": "npx only-allow pnpm",
"eslint": "eslint --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TinsFox/devui-cli.git"
},
"keywords": [
"devui",
"devui-cli",
"cli"
],
"author": "TinsFox",
"license": "MIT",
"bugs": {
"url": "https://github.com/TinsFox/devui-cli/issues"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
"commit-msg": "pnpm exec ts-node scripts/verifyCommit.ts $1"
},
"homepage": "https://github.com/TinsFox/devui-cli#readme",
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"packages/*/{src,types}/**/*.ts": [
"eslint --ext .ts"
],
"packages/**/*.d.ts": [
"eslint --ext .ts"
]
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.26",
"fs-extra": "^10.0.1",
"lint-staged": "^12.3.7",
"picocolors": "^1.0.0",
"prettier": "^2.4.1",
"simple-git-hooks": "^2.7.0",
"ts-node": "^10.4.0",
"typescript": "^4.6.2",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=12",
"pnpm": ">=6"
}
}