-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.75 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.75 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
{
"name": "locus",
"version": "0.1.0",
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@changesets/cli": "^2.29.8",
"@jest/core": "29.7.0",
"@jest/test-sequencer": "29.7.0",
"@swc/core": "^1.15.10",
"@swc/jest": "^0.2.39",
"@types/bun": "^1.3.6",
"@types/jest": "29.0.0",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"jest-config": "29.7.0",
"ts-jest": "29.1.2",
"typescript": "^5.8.3"
},
"scripts": {
"lint": "biome lint",
"typecheck": "tsc -b --noEmit",
"test": "bun test",
"format": "biome check --write --formatter-enabled=true --assist-enabled=true ",
"version": "changeset version",
"release": "bun run build:packages && changeset publish",
"build:packages": "bun run build:sdk && bun run build:gateway && bun run build:pm2 && bun run build:cron && bun run build:linear && bun run build:mcp && bun run build:jira && bun run build:telegram && bun run build:cli",
"build:mcp": "cd packages/mcp && bun run build",
"build:linear": "cd packages/linear && bun run build",
"build:jira": "cd packages/jira && bun run build",
"build:cron": "cd packages/cron && bun run build",
"build:sdk": "cd packages/sdk && bun run build",
"build:gateway": "cd packages/gateway && bun run build",
"build:pm2": "cd packages/pm2 && bun run build",
"build:telegram": "cd packages/telegram && bun run build",
"build:cli": "cd packages/cli && bun run build",
"clean": "rm -rf bun.lock",
"simulate": "bun run packages/cli/src/cli.ts",
"generate:registry": "bun run scripts/generate-registry.ts"
},
"type": "module",
"packageManager": "bun@1.2.4",
"workspaces": [
"apps/*",
"packages/*"
],
"trustedDependencies": [
"@swc/core",
"unrs-resolver"
]
}