-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 896 Bytes
/
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-new-htmx",
"version": "1.0.3",
"description": "",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/shoebilyas123/create-new-htmx.git"
},
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"build": "pnpm run clean && tsc && cp -r templates ./dist",
"dev": "ts-node-dev index.ts",
"start": "node ./dist/index.js",
"release": "pnpm publish --access public"
},
"bin": {
"create-new-htmx": "./dist/index.js"
},
"keywords": [
"htmx",
"html"
],
"author": "",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"@inquirer/select": "^1.3.1",
"@types/cross-spawn": "^6.0.6",
"@types/inquirer": "^9.0.7",
"commander": "^11.1.0",
"cross-spawn": "^7.0.3",
"inquirer": "^9.2.12"
},
"devDependencies": {
"ts-node-dev": "^2.0.0"
}
}