-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 2.24 KB
/
package.json
File metadata and controls
executable file
·65 lines (65 loc) · 2.24 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@nostr-dev-kit/monorepo",
"dependencies": {
"@biomejs/biome": "^2.3.4",
"esbuild": "^0.27.2",
"mermaid": "^11.12.1",
"vitepress": "^1.6.3",
"vitepress-plugin-mermaid": "^2.0.17"
},
"devDependencies": {
"svelte": "^5.46.0",
"syncpack": "^13.0.4",
"turbo": "^2.6.0"
},
"engines": {
"node": ">=16.0"
},
"packageManager": "bun@1.0.0",
"private": true,
"scripts": {
"build": "turbo build",
"build:blossom": "cd blossom && bun run build",
"build:cache-sqlite": "cd cache-sqlite && bun run build",
"build:core": "cd core && bun run build",
"build:hooks": "cd react && bun run build",
"build:libs": "turbo build --filter='./core' --filter='./wallet' --filter='./react' --filter='./mobile' --filter='./blossom' --filter='./cache-*' --filter='./cache-memory' --filter='./sessions' --filter='./sync' --filter='./wot' --filter='./svelte'",
"build:mobile": "cd mobile && bun run build",
"build:wallet": "cd wallet && bun run build",
"changeset": "changeset",
"clean": "turbo clean && rm -rf node_modules",
"cs": "changeset",
"cs:check": "bunx syncpack list-mismatches",
"cs:pub": "bun cs:check && changeset publish",
"cs:ver": "changeset version && bunx syncpack fix-mismatches",
"dev": "turbo dev --no-cache --continue",
"docs:build": "bash ./prepare-docs.sh && vitepress build docs",
"docs:dev": "bash ./prepare-docs.sh && npx vitepress dev docs",
"docs:preview": "vitepress preview",
"format": "biome format --write .",
"lint": "biome check .",
"release": "bun cs:check && turbo build --filter=docs^... && changeset publish",
"test": "bun vitest",
"version-packages": "changeset version"
},
"type": "module",
"workspaces": [
"core",
"cache-browser",
"cache-dexie",
"cache-memory",
"cache-redis",
"cache-nostr",
"cache-sqlite",
"cache-sqlite-wasm",
"react",
"mobile",
"messages",
"sessions",
"sync",
"svelte",
"wallet",
"wot",
"blossom"
]
}