-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 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
{
"name": "create-serenity",
"version": "2.3.0",
"author": "nobu-sh",
"license": "MIT",
"description": "Create a Minecraft Bedrock server software project with TypeScript.",
"keywords": [
"minecraft",
"bedrock",
"server",
"software",
"typescript"
],
"files": [
"dist",
"template-javascript",
"template-typescript",
"template-typescript-eslint"
],
"type": "module",
"main": "./dist/index.js",
"bin": {
"create-serenity": "./dist/index.js",
"csa": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@ariesclark/eslint-config": "^2.0.1",
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"strip-ansi": "^7.1.0"
}
}