-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.66 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.66 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "dojo.js",
"type": "module",
"packageManager": "bun@1.3.1",
"workspaces": {
"packages": [
"packages/*",
"example"
],
"catalog": {
"starknet": "^9.4.2",
"@dojoengine/torii-wasm": "1.8.2",
"@dojoengine/torii-client": "1.8.2",
"@starknet-io/get-starknet-core": "4.0.8",
"@starknet-react/core": "^5.0.3",
"@starknet-react/chains": "^5.0.3",
"@starknet-io/types-js": "^0.10.2",
"@types/react": "^18.0.0 || ^19.0.0",
"@types/react-dom": "^18.0.0 || ^19.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"@effect-atom/atom": "^0.1.22",
"@effect-atom/atom-react": "^0.1.17",
"@effect/opentelemetry": "^0.56.6",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-trace-base": "^2.2.0",
"@opentelemetry/sdk-trace-node": "^2.2.0",
"@opentelemetry/sdk-logs": "^0.208.0",
"@opentelemetry/sdk-metrics": "^2.2.0"
}
},
"overrides": {
"starknet": "^9.4.2"
},
"scripts": {
"postinstall": "bun run warmup:wasm",
"warmup:wasm": "bunx wasm-pack --version",
"build:deps": "turbo build:deps",
"build:wasm": "turbo build:wasm",
"build:packages": "turbo build --filter=\"@dojoengine/*\"",
"build:examples": "turbo build --filter=\"example-*\"",
"build": "turbo build",
"clean": "bash ./scripts/clean.sh",
"biome:format": "bunx @biomejs/biome format packages example .json --write",
"biome:format:check": "bunx @biomejs/biome format packages .json example",
"biome:lint": "bunx @biomejs/biome lint packages example --write",
"biome:lint:check": "bunx @biomejs/biome lint packages example",
"biome:check": "bunx @biomejs/biome check packages example --write",
"format": "turbo format",
"format:check": "turbo format:check",
"lint": "turbo lint",
"lint:check": "turbo lint:check",
"changeset": "changeset",
"version": "changeset version",
"prepare:publish": "bun scripts/prepare-publish.ts",
"restore:packages": "bun scripts/restore-packages.ts",
"release": "bun run build:deps && bun run prepare:publish && changeset publish && bun run restore:packages --cleanup",
"release:dry-run": "bun run build:deps && bun run prepare:publish && changeset publish --dry-run && bun run restore:packages --cleanup",
"dev": "turbo watch dev --concurrency 20",
"dev:deps": "turbo watch build:deps --concurrency 20",
"docs": "SKIP_WASM_BUILD=1 turbo run docs --ui stream && typedoc --out docs --entryPointStrategy merge 'docs-json/*.json'",
"typedoc": "typedoc --options typedoc.json && typedoc",
"test": "turbo test",
"test:watch": "turbo watch test"
},
"devDependencies": {
"@biomejs/biome": "^2.2.3",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@effect/language-service": "^0.56.0",
"@typhonjs-typedoc/typedoc-theme-dmt": "^0.2.3",
"husky": "^9.1.7",
"lerna": "^8.2.3",
"tsup": "^8.5.0",
"turbo": "^2.6.0",
"typedoc": "^0.26.11",
"typedoc-plugin-coverage": "^3.4.1",
"typedoc-plugin-missing-exports": "^3.1.0",
"wasm-pack": "^0.13.1"
},
"dependencies": {
"@changesets/cli": "^2.29.6",
"@dojoengine/recs": "2.0.13"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}