-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.36 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.36 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "laky",
"type": "module",
"version": "0.3.6",
"description": "",
"author": {
"email": "hacxy.js@outlook.com",
"name": "hacxy"
},
"license": "MIT",
"keywords": [
"laky",
"cli",
"lakyjs"
],
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"laky": "bin/index.js"
},
"files": [
"bin",
"dist",
"template"
],
"scripts": {
"start": "node bin/index.js",
"dev": "unbuild --stub && npm link",
"build": "unbuild --type",
"lint": "eslint . --fix",
"typecheck": "tsc --noEmit",
"release": "np",
"prepublishOnly": "npm run build",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"typescript": "^5.4.4"
},
"dependencies": {
"cac": "^6.7.14",
"picocolors": "^1.1.1",
"swagger-typescript-api": "13.0.14"
},
"devDependencies": {
"@lakyjs/eslint-config": "^0.0.1",
"@types/node": "^20.12.5",
"eslint": "^9.16.0",
"lint-staged": "^15.2.10",
"np": "^10.1.0",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"unbuild": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "npx tsx scripts/check-commit.ts"
},
"lint-staged": {
"*.{js,ts}": [
"eslint . --fix"
]
},
"np": {
"message": "chore: release v%s",
"tests": false,
"testScript": "typecheck"
}
}