-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (21 loc) · 840 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (21 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "dequel",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"tegami": "bun scripts/tegami.mts",
"release": "git tag v$(cat VERSION) && git push origin v$(cat VERSION)",
"sync-versions": "node -e \"const v = require('fs').readFileSync('VERSION','utf8').trim(); ['apps/api/package.json','apps/web/package.json','apps/docs/package.json','apps/agent/package.json'].forEach(f => { const p = require('./'+f); p.version = v; require('fs').writeFileSync(f, JSON.stringify(p, null, 2) + '\\n'); }); console.log('Versions synced to', v);\"",
"postinstall": "bun sync-versions",
"lint": "biome check --write apps/ && echo 'All clean.'",
"lint:check": "biome check apps/ && echo 'All clean.'"
},
"devDependencies": {
"tegami": "^1.2.5"
},
"dependencies": {
"semver": "^7.8.5"
}
}