summaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-06-04 22:14:36 +0900
committerAdam Malczewski <[email protected]>2026-06-04 22:14:36 +0900
commita6119e0434597399c773da6f0b31363003f6aa09 (patch)
tree46efb86279b446ba286e7ebb02db95d6dae3bc35 /package.json
parent394f1ed37ce860da6fdc385769bf29f9737105cd (diff)
downloaddispatch-a6119e0434597399c773da6f0b31363003f6aa09.tar.gz
dispatch-a6119e0434597399c773da6f0b31363003f6aa09.zip
chore: scaffold monorepo + AI harness (constitution, rules, glossary, kernel stub)
Diffstat (limited to 'package.json')
-rw-r--r--package.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..dcdf705
--- /dev/null
+++ b/package.json
@@ -0,0 +1,21 @@
+{
+ "name": "dispatch",
+ "private": true,
+ "type": "module",
+ "workspaces": [
+ "packages/*"
+ ],
+ "scripts": {
+ "check": "biome check .",
+ "check:fix": "biome check --write .",
+ "test": "vitest run",
+ "test:watch": "vitest",
+ "typecheck": "tsc -b --pretty"
+ },
+ "devDependencies": {
+ "@biomejs/biome": "^2.4.15",
+ "@types/bun": "^1.3.14",
+ "typescript": "^5.7.0",
+ "vitest": "^3.0.0"
+ }
+}