-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 891 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 891 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
{
"name": "create-hyperbook",
"version": "0.3.6",
"description": "Shared logic for creating new Hyperbook projects",
"platform": "node",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"create-hyperbook": "./dist/create-hyperbook.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "rimraf dist && pnpm build:create && pnpm build:pkg && pnpm build:types && node postbuild.mjs",
"build:pkg": "node ../../scripts/build.mjs",
"build:create": "tsdown",
"build:types": "tsc --project tsconfig.build.json --declaration --emitDeclarationOnly"
},
"dependencies": {
"@hyperbook/types": "workspace:*",
"chalk": "^4.1.2",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"rimraf": "6.0.1",
"tsdown": "^0.20.1",
"typescript": "5.7.3",
"vitest": "4.0.18"
}
}