-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 939 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 939 Bytes
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
{
"name": "bitplan-dev",
"description": "Encrypted HTML plans, hosted while they change and published as 1Sat Ordinals when ready.",
"private": true,
"license": "MIT",
"packageManager": "bun@1.3.14",
"homepage": "https://bitplan.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/opldotdev/bitplan.dev.git"
},
"bugs": {
"url": "https://github.com/opldotdev/bitplan.dev/issues"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"lint": "bun run lint:root && bun run lint:web",
"lint:fix": "bun run lint:fix:root && bun run --cwd apps/web fix",
"lint:fix:root": "biome check --write .",
"lint:root": "biome check .",
"lint:web": "bun run --cwd apps/web lint",
"typecheck": "bun run --filter '*' typecheck",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "2.5.11",
"@types/bun": "^1.4.0",
"typescript": "^7.0.2"
}
}