-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "colony-monorepo",
"version": "0.0.0",
"private": true,
"description": "Local-first memory and coordination for AI coding agents.",
"license": "MIT",
"author": "Imdeadpool",
"homepage": "https://github.com/recodeee/colony",
"repository": {
"type": "git",
"url": "git+https://github.com/recodeee/colony.git"
},
"bugs": {
"url": "https://github.com/recodeee/colony/issues"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"build": "pnpm -r --filter \"./packages/*\" --filter \"./apps/*\" build",
"dev": "pnpm --filter @imdeadpool/colony-cli dev",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "pnpm -r exec rm -rf dist && rm -rf node_modules/.cache",
"p": "pnpm run release",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.9.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}