-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.83 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
{
"name": "@nyxb/nyxi",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "📦 Always right package manager",
"author": "Dennis Ollhoff <[email protected]>",
"license": "MIT",
"homepage": "https://💻nyxb.ws",
"repository": {
"type": "git",
"url": "git+https://github.com/nyxblabs/nyxi.git"
},
"bugs": {
"url": "https://github.com/nyxblabs/nyxi/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": {
"nyxi": "bin/nyxi.mjs",
"nyxci": "bin/nyxci.mjs",
"nyxr": "bin/nyxr.mjs",
"nyxu": "bin/nyxu.mjs",
"nyxlx": "bin/nyxlx.mjs",
"nyxa": "bin/nyxa.mjs",
"nyxun": "bin/nyxun.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"dev": "esno src/commands/nyxi.ts",
"nyxr": "esno src/commands/nyxr.ts",
"build": "unbuild",
"stub": "unbuild --stub",
"release": "bumping && npm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest"
},
"devDependencies": {
"@nyxb/eslint-config": "^3.0.1",
"@posva/prompts": "^2.4.4",
"@types/fs-extra": "^11.0.4",
"@types/ini": "^1.3.33",
"@types/node": "^20.10.0",
"@types/which": "^3.0.3",
"bumping": "^9.2.1",
"eslint": "^9.3.0",
"eslint-plugin-format": "^0.1.1",
"esno": "^4.0.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"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.5",
"terminal-link": "^3.0.0",
"typescript": "^5.3.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.6",
"which": "^4.0.0"
}
}