-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "expressure",
"version": "1.1.0",
"description": "CLI to bootstrap an Expressure-based API.",
"main": "dist/cli.js",
"bin": {
"expressure": "./dist/cli.js"
},
"scripts": {
"build": "tsup src/cli.ts --format cjs --clean",
"dev": "tsup src/cli.ts --format cjs --watch --onSuccess \"node dist/cli.js\"",
"start": "node dist/cli.js",
"lint": "biome check",
"format": "biome format --write",
"prepare": "husky"
},
"keywords": [
"expressure",
"cli",
"boilerplate",
"express"
],
"author": {
"name": "Víctor Hugo Valle Castillo",
"url": "https://vihuvac.com/"
},
"license": "MIT",
"dependencies": {
"@clack/prompts": "0.11.0",
"commander": "14.0.2",
"degit": "2.8.4",
"execa": "9.6.1",
"fs-extra": "11.3.2",
"picocolors": "1.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/degit": "2.8.6",
"@types/fs-extra": "11.0.4",
"@types/node": "24.10.1",
"husky": "9.1.7",
"ts-node": "10.9.2",
"tsup": "8.5.1",
"typescript": "5.9.3"
}
}