-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 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
{
"name": "genv-cli",
"type": "module",
"version": "0.1.4",
"packageManager": "pnpm@10.28.1",
"author": "hackycy <hackycy@outlook.com>",
"license": "MIT",
"homepage": "https://github.com/hackycy-collection/genv-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hackycy-collection/genv-cli.git"
},
"bugs": "https://github.com/hackycy-collection/genv-cli/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./cli": "./dist/cli.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"genv": "bin/genv.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "eslint",
"prepublishOnly": "nr build",
"release": "bumpp",
"test": "tsx src/cli.ts",
"typecheck": "tsc",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@clack/prompts": "catalog:cli",
"cac": "catalog:cli",
"unconfig": "catalog:cli"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:cli",
"@antfu/ni": "catalog:cli",
"@antfu/utils": "catalog:inlined",
"@types/node": "catalog:types",
"bumpp": "catalog:cli",
"eslint": "catalog:cli",
"lint-staged": "catalog:cli",
"simple-git-hooks": "catalog:cli",
"tinyexec": "catalog:testing",
"tsdown": "catalog:cli",
"tsx": "catalog:cli",
"typescript": "catalog:cli"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}