-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 935 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 935 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
{
"name": "@rootlessnet/monorepo",
"version": "2.0.0",
"description": "RootlessNet - A rootless, ownerless substrate for human expression",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"build:packages": "bun run --filter '@rootlessnet/*' build",
"test": "bun test",
"test:coverage": "bun test --coverage",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"typecheck": "tsc --noEmit",
"clean": "rm -rf packages/*/dist node_modules/.cache",
"prepare": "bun run build:packages"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "^1.1.0",
"typescript": "^5.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/RootlessNet/protocol.git"
},
"author": "RootlessNet Community",
"license": "MIT"
}