-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.59 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.59 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@antfu/ni",
"type": "module",
"version": "29.0.0",
"packageManager": "pnpm@10.32.1",
"description": "Use the right package manager",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"homepage": "https://github.com/antfu-collective/ni#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu-collective/ni.git"
},
"bugs": {
"url": "https://github.com/antfu-collective/ni/issues"
},
"exports": {
".": "./dist/index.mjs",
"./na": "./dist/na.mjs",
"./nci": "./dist/nci.mjs",
"./nd": "./dist/nd.mjs",
"./ni": "./dist/ni.mjs",
"./nlx": "./dist/nlx.mjs",
"./nr": "./dist/nr.mjs",
"./nun": "./dist/nun.mjs",
"./nup": "./dist/nup.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"bin": {
"ni": "bin/ni.mjs",
"nci": "bin/nci.mjs",
"nr": "bin/nr.mjs",
"nup": "bin/nup.mjs",
"nd": "bin/nd.mjs",
"nlx": "bin/nlx.mjs",
"na": "bin/na.mjs",
"nun": "bin/nun.mjs"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"prepublishOnly": "npm run build",
"dev": "tsx src/commands/ni.ts",
"nr": "tsx src/commands/nr.ts",
"build": "tsdown",
"release": "bumpp",
"typecheck": "tsc --noEmit",
"prepare": "npx simple-git-hooks",
"lint": "eslint",
"test": "vitest"
},
"dependencies": {
"ansis": "catalog:prod",
"fzf": "catalog:prod",
"package-manager-detector": "catalog:prod",
"tinyexec": "catalog:prod",
"tinyglobby": "catalog:prod"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:dev",
"@posva/prompts": "catalog:prod-inlined",
"@types/ini": "catalog:dev",
"@types/node": "catalog:dev",
"@types/which": "catalog:dev",
"bumpp": "catalog:dev",
"eslint": "catalog:dev",
"fast-npm-meta": "catalog:prod-inlined",
"ini": "catalog:prod-inlined",
"lint-staged": "catalog:dev",
"pnpm-workspace-yaml": "catalog:prod-inlined",
"simple-git-hooks": "catalog:dev",
"taze": "catalog:dev",
"tsdown": "catalog:dev",
"tsx": "catalog:dev",
"typescript": "catalog:dev",
"vitest": "catalog:dev",
"which": "catalog:prod-inlined"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"inlinedDependencies": {
"fast-npm-meta": "1.4.2",
"yaml": "2.8.2",
"pnpm-workspace-yaml": "1.6.0",
"ini": "6.0.0",
"kleur": "4.1.5",
"@posva/prompts": "2.4.4",
"sisteransi": "1.0.5",
"isexe": "4.0.0",
"which": "6.0.1"
}
}