-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
{
"name": "create-babylon-app",
"version": "1.0.0",
"description": "A CLI for scaffolding Babylon.js Web App.",
"type": "commonjs",
"main": "./bin/cli.mjs",
"bin": {
"create-babylon-app": "./bin/cli.mjs"
},
"homepage": "https://github.com/drumath2237/create-babylon-app",
"repository": {
"url": "git+https://github.com/drumath2237/create-babylon-app.git",
"type": "git"
},
"scripts": {
"dev": "jiti src/run.ts",
"build": "unbuild",
"start": "node ./bin/cli.mjs",
"version:set": "pnpm exec lerna version",
"lint": "biome lint ./src ./bin",
"format": "biome format --write ./src ./bin",
"check": "biome check ./src ./bin",
"check:write": "biome check --write ./src ./bin",
"check:ci": "biome ci ./src ./bin"
},
"author": "@drumath2237",
"license": "Apache-2.0",
"dependencies": {
"citty": "^0.1.6",
"consola": "^3.2.3",
"giget": "^1.2.3",
"pkg-types": "^1.1.3"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@lerna-lite/cli": "^3.7.1",
"@lerna-lite/version": "^3.7.1",
"@types/node": "^20.14.12",
"jiti": "^1.21.6",
"typescript": "^5.5.4",
"unbuild": "^2.0.0"
},
"keywords": [
"babylonjs",
"CLI",
"vite",
"nodejs",
"typescript"
],
"engines": {
"node": ">=14"
},
"files": [
"dist",
"templates",
"bin"
]
}