-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "create-kolmafia-script",
"description": "Create a kolmafia script with ease",
"version": "0.0.19",
"author": "Sam Gaus <sam@gaus.co.uk>",
"scripts": {
"build": "tsup src/cli.ts --minify --format esm",
"clean": "shx rm -rf lib",
"dev": "tsup src/cli.ts --watch",
"prepack": "npm run clean && npm run build",
"format": "prettier --write src/**/*.ts ./*.json"
},
"type": "module",
"bin": "dist/cli.js",
"files": [
"dist",
"templates"
],
"devDependencies": {
"@types/node": "^22.7.3",
"@types/yargs-interactive": "^2.1.6",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"create-create-app": "patch:create-create-app@npm%3A7.3.0#~/.yarn/patches/create-create-app-npm-7.3.0-8f333811bf.patch",
"yargs-interactive": "^3.0.1"
},
"packageManager": "yarn@4.4.1",
"engines": {
"node": ">=20.11 < 21 || >=21.2"
},
"engineStrict": true
}