-
Notifications
You must be signed in to change notification settings - Fork 255
/
package.json
60 lines (60 loc) · 1.39 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
{
"name": "nrm",
"version": "2.0.1",
"description": "npm registry manager can help you switch different npm registries easily and quickly",
"bin": {
"nrm": "dist/index.js"
},
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/Pana/nrm.git"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf node_modules dist",
"test": "pnpm build && vitest run",
"dev": "tsc --watch",
"build": "rimraf dist && tsc && rimraf dist/types.js",
"test:watch": "vitest",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"check": "biome check --write --verbose"
},
"keywords": [
"npm",
"registry"
],
"author": "Pana",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pana/nrm/issues"
},
"homepage": "https://github.com/Pana/nrm",
"dependencies": {
"@inquirer/checkbox": "^4.0.3",
"@inquirer/select": "^4.0.2",
"chalk": "4.1.2",
"commander": "^8.3.0",
"ini": "4.1.3",
"open": "8.4.2",
"undici": "5.28.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.8",
"@types/ini": "^4.1.1",
"@types/node": "18",
"coffee": "^5.4.0",
"mock-fs": "^5.4.1",
"rimraf": "^6.0.1",
"strip-ansi": "^7.1.0",
"typescript": "^5.7.2",
"vitest": "2.1.6"
},
"engines": {
"node": ">=18"
}
}