-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 886 Bytes
/
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
{
"name": "nrm-ng",
"version": "1.0.0-beta.2",
"description": "The next generation of NPM registry management",
"bin": "lib/index.js",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"nrm": "NODE_ENV=dev node src/index.js",
"build": "vite build"
},
"keywords": [
"npm",
"nrm",
"npm registry",
"npm registry selector",
"npm registry management",
"npm registry next generation"
],
"repository": {
"type": "git",
"url": "https://github.com/CaptainOfPhB/nrm-ng"
},
"author": "CaptainOfPhB<[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "^11.0.0",
"ini": "^4.1.1",
"node-fetch": "^2.6.12"
},
"devDependencies": {
"rollup-plugin-preserve-shebang": "^1.0.1",
"vite": "^4.4.9"
},
"packageManager": "[email protected]"
}