-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1 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
{
"name": "@project-selene/create-mod",
"version": "0.1.3",
"description": "A script for creating new Alabaster Dawn mods.",
"main": "dist/main.mjs",
"bin": "dist/main.mjs",
"scripts": {
"start": "esbuild src/main.mts --platform=node --format=esm --outfile=dist/main.mjs --watch",
"build": "esbuild src/main.mts --platform=node --format=esm --outfile=dist/main.mjs",
"prepare": "esbuild src/main.mts --platform=node --format=esm --outfile=dist/main.mjs",
"prepublish": "esbuild src/main.mts --platform=node --format=esm --outfile=dist/main.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Project Selene",
"license": "MIT",
"dependencies": {
"commander": "^11.0.0",
"inquirer": "^9.0.0",
"uuid": "^14.0.0",
"validate-npm-package-name": "^8.0.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^25.9.1",
"@types/validate-npm-package-name": "^4.0.2",
"esbuild": "^0.28.0",
"typescript": "^6.0.3"
}
}