-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.29 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@cloudflare/create-nimbus-docs",
"version": "0.7.4",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"description": "Scaffold a new Nimbus docs site. Used via `npx @cloudflare/create-nimbus-docs@latest`.",
"keywords": [
"astro",
"documentation",
"docs",
"scaffold",
"create",
"nimbus"
],
"homepage": "https://nimbus-docs.com",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare/nimbus.git",
"directory": "packages/create-nimbus-docs"
},
"bugs": {
"url": "https://github.com/cloudflare/nimbus/issues"
},
"license": "MIT",
"author": "Mohamed Hassan",
"bin": {
"create-nimbus-docs": "./dist/index.js"
},
"engines": {
"node": ">=22.12.0"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "node --import tsx --test \"test/**/*.test.ts\"",
"typecheck": "tsc --noEmit",
"prepack": "tsdown"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"@cloudflare/nimbus-docs": "workspace:*",
"giget": "^3.3.0",
"mri": "^1.2.0",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/mri": "^1.1.4",
"@types/node": "^20.17.0",
"tsdown": "^0.20.3",
"tsx": "^4.22.3"
}
}