-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.38 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
{
"name": "shaders-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo root for Shaders — React shader components on WebGPU + TSL",
"license": "MIT",
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"smoke": "node scripts/smoke-test-cli.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev:docs": "turbo run dev --filter=@shaders/docs",
"build:docs": "turbo run build --filter=@shaders/docs",
"preview:docs": "turbo run preview --filter=@shaders/docs",
"dev:editor": "turbo run dev --filter=@shaders/editor",
"build:editor": "turbo run build --filter=@shaders/editor",
"preview:editor": "turbo run preview --filter=@shaders/editor",
"test:visual": "turbo run test:visual",
"test:visual:update": "turbo run test:visual:update",
"snap": "bash scripts/snap.sh",
"posters": "bash scripts/build-posters.sh",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && pnpm typecheck && pnpm lint && pnpm format:check && pnpm test && pnpm smoke && pnpm publish -r --access public --no-git-checks",
"doctor": "react-doctor"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^9.39.4",
"@trivago/prettier-plugin-sort-imports": "^5",
"@types/node": "22",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/parser": "^8.60.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/ui": "^4.1.7",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"playwright": "1.59.1",
"prettier": "^3",
"react": "^19.0.0",
"react-doctor": "^0.9.11",
"turbo": "^2.2.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.60.0",
"vite": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=22"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "22.22.2",
"onFail": "download"
}
},
"packageManager": "pnpm@10.34.5"
}