-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.47 KB
/
package.json
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
{
"name": "weaverse-sdks",
"description": "Weaverse SDKs monorepo.",
"version": "3.2.9",
"license": "MIT",
"private": true,
"scripts": {
"dev": "npm 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",
"build": "turbo run build --filter=./packages/*",
"build:graph": "turbo run build --graph=repo-graph.svg",
"prepare": "npm run build",
"postinstall": "lefthook install",
"changeset": "changeset",
"typecheck": "turbo typecheck --parallel",
"biome": "biome check --diagnostic-level=error",
"biome:fix": "biome check --write",
"format": "biome format --write",
"format:check": "biome format",
"ci": "biome ci --changed"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.9",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"cross-env": "7.0.3",
"lefthook": "^1.8.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"turbo": "2.2.3",
"typescript": "5.6.3"
},
"optionalDependencies": {
"@esbuild/darwin-x64": "^0.24.0",
"turbo-darwin-arm64": "^2.2.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}