forked from Weaverse/weaverse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.76 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
{
"name": "weaverse-sdks",
"description": "Weaverse SDKs monorepo.",
"version": "5.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"templates/*"
],
"scripts": {
"dev": "pnpm run dev:pkg",
"dev:pkg": "cross-env LOCAL_DEV=true FORCE_CHANGELOG_SOURCE=remote turbo dev --no-daemon --filter=./packages/*",
"clean": "bash ./scripts/clean.sh",
"upgrade-packages": "bash ./scripts/upgrade-packages.sh",
"update-deps": "bash ./scripts/update-deps.sh",
"test": "turbo run test",
"test:run": "vp test --run --bail=1",
"build": "turbo run build --filter=./packages/*",
"build:graph": "turbo run build --graph=repo-graph.svg",
"postinstall": "lefthook install",
"typecheck": "turbo run typecheck --filter=./packages/*",
"biome": "biome check --diagnostic-level=error",
"biome:fix": "biome check --write --diagnostic-level=error",
"biome:fix:unsafe": "biome check --write --diagnostic-level=error --unsafe",
"format": "biome format --write",
"format:check": "biome format",
"ci": "biome ci --changed"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@types/node": "25.5.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260407.1",
"cross-env": "10.1.0",
"lefthook": "^2.1.5",
"react": "19.2.4",
"react-dom": "19.2.4",
"rimraf": "6.1.3",
"tsup": "8.5.1",
"turbo": "^2.9.4",
"typescript": "6.0.2",
"ultracite": "7.6.2",
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
},
"optionalDependencies": {
"@esbuild/darwin-x64": "^0.28.0",
"turbo-darwin-arm64": "^2.8.17"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@11.1.2"
}