-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 4.44 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@black-flag/core",
"version": "2.0.5",
"description": "A declarative framework for building fluent, deeply hierarchical command line interfaces with yargs",
"keywords": [
"cli",
"parse",
"command",
"line",
"interface",
"parameters",
"arguments",
"user",
"option",
"yargs",
"optstring"
],
"homepage": "https://github.com/Xunnamius/black-flag#readme",
"bugs": {
"url": "https://github.com/Xunnamius/black-flag/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xunnamius/black-flag.git"
},
"license": "MIT",
"author": "Xunnamius",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"types": "./dist/src/exports/index.d.ts",
"default": "./dist/src/exports/index.js"
},
"./util": {
"types": "./dist/src/exports/util.d.ts",
"default": "./dist/src/exports/util.js"
},
"./package": "./package.json",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"index": [
"dist/src/exports/index.d.ts"
],
"util": [
"dist/src/exports/util.d.ts"
],
"package": [
"package.json"
]
}
},
"files": [
"/dist",
"/LICENSE",
"/package.json",
"/README.md"
],
"workspaces": [
"packages/*",
"!packages/*.ignore*"
],
"scripts": {
"build": "npm run build:dist && cd ./examples/black-flag/typescript && npm install && npm run build && cd ../../black-flag-extensions/myctl && npm install && npm run build",
"build:changelog": "symbiote build changelog --env NODE_NO_WARNINGS=1",
"build:dist": "symbiote build distributables --env NODE_NO_WARNINGS=1 --not-multiversal --skip-bijective 'test/fixtures/.+$'",
"build:docs": "symbiote build docs --env NODE_NO_WARNINGS=1 --entries 'src/exports/**/*.ts' 'test/util.ts' --typedoc-options --out docs/api",
"build:topological": "symbiote project topology --run build --env NODE_NO_WARNINGS=1",
"clean": "symbiote clean --env NODE_NO_WARNINGS=1",
"format": "symbiote format --env NODE_NO_WARNINGS=1 --hush",
"info": "symbiote project info --env NODE_NO_WARNINGS=1",
"lint": "npm run lint:package --",
"lint:package": "symbiote lint --env NODE_NO_WARNINGS=1 --hush",
"lint:packages": "symbiote lint --env NODE_NO_WARNINGS=1 --hush --scope unlimited",
"lint:project": "symbiote project lint --env NODE_NO_WARNINGS=1",
"lint:topological": "symbiote project topology --run lint --env NODE_NO_WARNINGS=1",
"list-tasks": "symbiote list-tasks --env NODE_NO_WARNINGS=1 --scope this-package",
"prepare": "symbiote project prepare --env NODE_NO_WARNINGS=1",
"release": "symbiote release --env NODE_NO_WARNINGS=1",
"release:topological": "symbiote project topology --run release --env NODE_NO_WARNINGS=1",
"renovate": "symbiote project renovate --env NODE_NO_WARNINGS=1 --github-reconfigure-repo --regenerate-assets --assets-preset lib",
"renovate:aliases": "symbiote project renovate --env NODE_NO_WARNINGS=1 --regenerate-assets --assets-preset lib --only-aliases",
"start": "symbiote start --env NODE_NO_WARNINGS=1 --",
"test": "npm run test:package:unit --",
"test:package:all": "symbiote test --env NODE_NO_WARNINGS=1 --tests all-local --coverage",
"test:package:e2e": "symbiote test --env NODE_NO_WARNINGS=1 --tests e2e-local",
"test:package:integration": "symbiote test --env NODE_NO_WARNINGS=1 --tests integration",
"test:package:unit": "symbiote test --env NODE_NO_WARNINGS=1 --tests unit type",
"test:packages:all": "symbiote test --env NODE_NO_WARNINGS=1 --tests all-local --scope unlimited --coverage",
"test:packages:all:unit": "symbiote test --env NODE_NO_WARNINGS=1 --tests unit type --scope unlimited --coverage",
"test:topological": "symbiote project topology --run test --env NODE_NO_WARNINGS=1"
},
"dependencies": {
"@-xun/fs": "^1.0.0",
"@-xun/js": "^1.1.1",
"@types/yargs": "^17.0.33",
"core-js": "^3.41.0",
"named-app-errors": "^4.0.2",
"package-up": "^5.0.0",
"rejoinder": "^1.2.5",
"type-fest": "^4.38.0",
"yargs": "^17.7.2",
"yargs-parser": "npm:@-xun/yargs-parser-experimental"
},
"devDependencies": {
"@-xun/project": "^1.0.5",
"@-xun/run": "^1.1.0",
"@-xun/symbiote": "^3.6.0"
},
"engines": {
"node": "^18.20.0 || ^20.18.0 || ^22.12.0 || >=23.3.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}