-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.6 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.6 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
{
"name": "create-tres",
"version": "1.1.0",
"type": "module",
"packageManager": "pnpm@10.28.2",
"description": "CLI wizard to create TresJS projects",
"keywords": [
"tresjs",
"vue",
"threejs",
"3d",
"cli",
"create",
"wizard"
],
"author": "Alvaro Saburido <hola@alvarosaburido.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Tresjs/create-tresjs.git"
},
"bugs": {
"url": "https://github.com/Tresjs/create-tresjs/issues"
},
"homepage": "https://github.com/Tresjs/create-tresjs#readme",
"bin": {
"create-tresjs": "./bin/index.js"
},
"files": [
"bin/",
"dist/",
"templates/",
"README.md"
],
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"dev": "pnpm run build && node bin/index.js",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm run build",
"release": "release-it"
},
"dependencies": {
"@tresjs/core": "5.3.3",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"fs-extra": "^11.3.3",
"kolorist": "^1.8.0",
"prompts": "^2.4.2",
"validate-npm-package-name": "^6.0.2"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.4",
"@tresjs/eslint-config": "^1.5.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.1.0",
"@types/prompts": "^2.4.9",
"@types/validate-npm-package-name": "^4.0.2",
"release-it": "^19.2.4",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=16.0.0"
}
}