-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 832 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 832 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
33
34
35
{
"name": "furnish",
"version": "0.1.0",
"module": "src/cli.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun build src/cli.ts --outfile dist/furnish.js",
"compile": "bun build --compile src/cli.ts --outfile dist/furnish",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4",
"@types/localtunnel": "^2.0.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dayjs": "^1.11.19",
"fs-extra": "^11.3.3",
"nanoid": "^5.1.6",
"open": "^11.0.0",
"ora": "^9.1.0",
"slugify": "^1.6.6",
"yaml": "^2.8.2",
"zod": "^4.3.6"
}
}