-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.44 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
{
"name": "@pirog/me",
"description": "Bootstrap script and release tooling for pirog.me.",
"version": "1.0.0-beta.4",
"author": "Mike Pirog @pirog",
"license": "MIT",
"repository": "https://github.com/pirog/me",
"bugs": "https://github.com/pirog/me/issues",
"homepage": "https://github.com/pirog/me",
"packageManager": "bun@1.3.4",
"engines": {
"bun": ">=1.3.0 <1.4.0"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"aisync": "./bin/aisync.js",
"codexsync": "./bin/codexsync.js"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@lando/leia": "^1.0.0-beta.4",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^17.6.0",
"mocha": "^11.7.5",
"prettier": "^3.8.3",
"shellcheck": "^4.1.0"
},
"scripts": {
"build": "bun ./scripts/build-dist.js",
"ai:sync": "bun ./bin/aisync.js",
"codex:check": "bun ./bin/codexsync.js check",
"codex:validate": "bun ./bin/codexsync.js validate",
"codex:sync": "bun ./bin/codexsync.js sync",
"format:check": "prettier . --check --ignore-unknown",
"format:write": "prettier . --write --ignore-unknown",
"leia": "leia",
"lint": "bun run lint:eslint && bun run format:check && bun run lint:shellcheck",
"lint:eslint": "eslint .",
"lint:shellcheck": "shellcheck boot.sh",
"test": "bun run test:unit",
"test:unit": "mocha \"test/**/*.spec.js\""
}
}