-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.17 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
{
"name": "onrm",
"version": "1.4.1",
"bin": {
"onrm": "bin/onrm.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/0x-jerry/onrm.git"
},
"author": "0x-jerry <[email protected]>",
"bugs": {
"url": "https://github.com/0x-jerry/onrm/issues/new"
},
"keywords": [
"NPM",
"YARN",
"registry"
],
"files": [
"bin",
"dist"
],
"scripts": {
"dev": "tsx src/cli.ts",
"prepublishOnly": "npm run build",
"build": "tsup src/cli.ts --format esm --clean",
"release": "x-release"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/0x-jerry/onrm",
"license": "MIT",
"dependencies": {
"@0x-jerry/utils": "^3.0.2",
"@iarna/toml": "^2.2.5",
"@inquirer/prompts": "^6.0.1",
"cli-highlight": "^2.1.11",
"minimist": "^1.2.8",
"picocolors": "^1.1.0",
"which": "^4.0.0"
},
"devDependencies": {
"@0x-jerry/x-release": "^2.2.2",
"@types/iarna__toml": "^2.0.5",
"@types/minimist": "^1.2.5",
"@types/which": "^3.0.4",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}