forked from boldblackai/create-dispatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.06 KB
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
{
"name": "@boldblackai/create-bclaw",
"version": "1.0.2",
"description": "CLI to generate bclaw repositories",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"create-bclaw": "dist/cli.js"
},
"packageManager": "pnpm@11.9.0",
"files": [
"dist",
"template"
],
"scripts": {
"build": "tsc",
"prepare": "tsc",
"lint": "pnpm lint:ts && pnpm lint:md",
"lint:ts": "oxlint .",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"test": "tsc && node --test"
},
"devDependencies": {
"@types/node": "22.20.0",
"markdownlint-cli2": "0.17.2",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22"
},
"keywords": [
"create",
"scaffold",
"hermes",
"harness",
"ecs",
"slack",
"aws"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/boldblackai/create-bclaw.git"
},
"homepage": "https://bclaw.sh"
}