forked from antfu-collective/ni
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.8 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
72
73
74
75
76
77
{
"name": "@antfu/ni",
"type": "module",
"version": "0.21.8",
"packageManager": "[email protected]",
"description": "Use the right package manager",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/antfu/ni#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/ni.git"
},
"bugs": {
"url": "https://github.com/antfu/ni/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"ni": "bin/ni.mjs",
"nci": "bin/nci.mjs",
"nr": "bin/nr.mjs",
"nu": "bin/nu.mjs",
"nlx": "bin/nlx.mjs",
"na": "bin/na.mjs",
"nun": "bin/nun.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"prepublishOnly": "npm run build",
"dev": "esno src/commands/ni.ts",
"nr": "esno src/commands/nr.ts",
"build": "unbuild",
"stub": "unbuild --stub",
"release": "bumpp && npm publish",
"lint": "eslint .",
"test": "vitest"
},
"devDependencies": {
"@antfu/eslint-config": "^0.40.2",
"@posva/prompts": "^2.4.4",
"@types/fs-extra": "^11.0.1",
"@types/ini": "^1.3.31",
"@types/node": "^20.5.3",
"@types/which": "^3.0.0",
"bumpp": "^9.2.0",
"eslint": "^8.47.0",
"esno": "^0.17.0",
"execa": "^7.1.1",
"fast-glob": "^3.3.1",
"find-up": "^6.3.0",
"fs-extra": "^11.1.1",
"fzf": "^0.5.2",
"ini": "^4.1.1",
"kleur": "^4.1.5",
"rimraf": "^5.0.1",
"terminal-link": "^3.0.0",
"typescript": "^5.1.6",
"unbuild": "^2.0.0",
"vitest": "^0.34.2",
"which": "^3.0.1"
},
"eslintConfig": {
"extends": "@antfu"
}
}