-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.77 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.77 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
{
"name": "create-roblox",
"version": "0.4.4",
"description": "A dynamic template CLI for Roblox projects.",
"main": "dist/index.cjs",
"type": "module",
"scripts": {
"build": "npx esbuild src/index.ts --bundle --outdir=dist --platform=node --minify --out-extension:.js=.cjs",
"start": "npm run build && node dist/index.cjs",
"dev": "esbuild src/index.ts --bundle --outdir=dist --platform=node --out-extension:.js=.cjs && node dist/index.cjs",
"npm:prepare": "npm run build",
"ci:eslint": "eslint src/**/*.ts --config eslint.config.ts --flag unstable_ts_config",
"ci:prettier": "prettier --check ./src",
"ci:tsc": "tsc --noEmit"
},
"bin": {
"create-roblox": "./bin.cjs"
},
"author": "VirtualButFake",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/VirtualButFake/create-roblox.git"
},
"bugs": {
"url": "https://github.com/VirtualButFake/create-roblox/issues"
},
"homepage": "https://github.com/VirtualButFake/create-roblox#readme",
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"@types/fs-extra": "11.0.4",
"chalk": "5.3.0",
"fs-extra": "11.2.0",
"winston": "3.11.0",
"winston-error-format": "^3.0.1"
},
"devDependencies": {
"jiti": "^2.4.1",
"typescript-eslint": "^8.17.0",
"eslint-plugin-unused-imports": "^4.1.4",
"@eslint/js": "^9.16.0",
"@typescript-eslint/eslint-plugin": "8.17.0",
"eslint": "9.16.0",
"prettier": "3.3.3"
},
"files": [
"dist",
"bin",
"src/template",
"LICENSE.md",
"bin.cjs"
]
}