-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.67 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
{
"name": "luminar",
"version": "0.0.4",
"description": "🚀 A lightweight, powerful tool for parsing command-line arguments with ease.👌",
"author": "Dennis Ollhoff <[email protected]>",
"license": "MIT",
"funding": "https://github.com/nyxblabs/luminar?sponsor=1",
"repository": {
"type": "git",
"url": "git+https://github.com/nyxblabs/luminar.git"
},
"bugs": {
"url": "https://github.com/nyxblabs/luminar/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"imports": {
"#luminar": {
"types": "./src/index.d.ts",
"development": "./src/index.ts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"prepack": "nyxr build && clean-pkg-json",
"build": "buildkarium",
"test:dts": "tsd",
"type-check": "tsc --noEmit",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js . --fix",
"release": "nyxr test && nyxlx changelogen --release && pnpm publish",
"test": "nyxr lint && vitest run --coverage"
},
"devDependencies": {
"@nyxb/eslint-config": "0.0.53",
"@types/node": "^20.2.1",
"@vitest/coverage-c8": "^0.31.1",
"buildkarium": "^0.0.2",
"clean-pkg-json": "^1.2.0",
"consolji": "^0.1.4",
"dynot": "^0.1.8",
"tsd": "^0.28.1",
"typescript": "^5.0.4",
"vitest": "^0.31.1"
},
"files": [
"dist"
],
"keywords": [
"cli",
"command-line",
"flag",
"luminar",
"argv",
"arguments",
"parser",
"typed",
"typescript"
]
}