-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 873 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 873 Bytes
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
{
"name": "create-quick-script",
"version": "0.0.0",
"type": "module",
"repository": {
"url": "git@github.com:todor-a/quick-script.git"
},
"bin": {
"create-quick-script": "./dist/index.js"
},
"exports": {
"bin": "./dist/index.js"
},
"files": ["dist", "templates"],
"scripts": {
"build": "tsdown",
"watch": "tsdown --watch",
"format": "npx @biomejs/biome format --write",
"dev": "node --experimental-transform-types --experimental-strip-types --watch ./src/index.ts "
},
"dependencies": {
"@clack/prompts": "^0.10.1",
"es-toolkit": "^1.36.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.14.1",
"semantic-release": "^24.2.3",
"tsdown": "^0.9.0",
"typescript": "^5.8.3"
}
}