-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) Β· 1.84 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
{
"name": "zyro",
"version": "0.0.2",
"description": "π Unleash the power of command-line with our intuitive CLI development tool - your gateway to automation! π οΈπ",
"author": "Dennis Ollhoff <[email protected]",
"license": "MIT",
"hompage": "https://π»nyxb.ws",
"repository": {
"type": "git",
"url": "git+https://github.com/nyxblabs/zyro.git"
},
"bugs": {
"url": "https://github.com/nyxblabs/zyro/issues"
},
"funding": "https://github.com/nyxblabs/zyro?sponsor=1",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"imports": {
"#zyro": {
"types": "./src/index.d.ts",
"development": "./src/index.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"prepack": "nyxr build && clean-pkg-json",
"build": "buildkarium",
"type-check": "tsc --noEmit",
"test:dts": "tsd -f tests/zyro.test-d.ts",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js . --fix",
"release": "nyxr build && nyxlx changelogen@latest --release && pnpm publish",
"test": "nyxr lint && vitest"
},
"dependencies": {
"luminar": "^0.0.5",
"tabletron": "^0.0.2"
},
"devDependencies": {
"@nyxb/eslint-config": "0.0.53",
"@nyxb/picocolors": "1.0.2",
"@types/node": "^18.13.0",
"@vitest/coverage-c8": "^0.31.1",
"buildkarium": "^0.0.2",
"clean-pkg-json": "^1.2.0",
"consolji": "^0.1.4",
"dynot": "^0.1.8",
"eslint": "^8.41.0",
"nanospy": "^0.5.0",
"tsd": "^0.25.0",
"typescript": "^4.9.5",
"vitest": "^0.31.1"
},
"files": [
"dist"
],
"keywords": [
"cli",
"command line",
"argv",
"parameters",
"flags",
"node",
"typescript"
]
}