-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
61 lines (61 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@viber3d/source",
"private": true,
"workspaces": [
"templates/*",
"packages/*",
"docs/*"
],
"version": "0.0.6",
"homepage": "https://codetie.ai",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instructa/viber3d"
},
"license": "MIT",
"scripts": {
"build": "pnpm -r build",
"build:packages": "pnpm -r --filter './packages/**' build",
"build:templates": "pnpm -r --filter './templates/**' build",
"build:docs": "pnpm -r --filter './docs/**' build",
"dev:docs": "pnpm -r --filter './docs/**' dev",
"clean": "npx clean-modules node_modules **/node_modules",
"release": "tsx scripts/release.ts",
"release:alpha": "tsx scripts/release.ts --alpha",
"release:patch": "tsx scripts/release.ts patch",
"release:minor": "tsx scripts/release.ts minor",
"release:major": "tsx scripts/release.ts major",
"release:patch:alpha": "tsx scripts/release.ts patch --alpha",
"release:minor:alpha": "tsx scripts/release.ts minor --alpha",
"release:major:alpha": "tsx scripts/release.ts major --alpha",
"release:branch": "git checkout -b release/v$npm_package_version && git push origin release/v$npm_package_version && git tag v$npm_package_version && git push origin v$npm_package_version",
"llms": "npx repomix docs/viber3d-docs/content --include '4.core-concepts/*.md,5.addons/*.md' --output docs/viber3d-docs/public/llms_full.txt"
},
"keywords": [
"viber3d",
"cli",
"three",
"threejs",
"project-setup",
"cursor",
"cursor-ai",
"react-three-fiber",
"ai-coding",
"instructa"
],
"devDependencies": {
"@types/node": "^22.13.10",
"tsx": "^4.7.0",
"typescript": "^5.8.2"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
],
"overrides": {}
}
}