-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.11 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.11 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
{
"name": "create-tdesign",
"version": "0.1.0",
"packageManager": "pnpm@11.1.2",
"description": "Scaffold TDesign projects with Vite, Rsbuild, Vike, Nuxt, or Next.js.",
"type": "module",
"license": "MIT",
"bin": {
"create-tdesign": "index.js"
},
"files": [
"index.js",
"dist",
"templates"
],
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TDesignOteam/create-tdesign.git"
},
"homepage": "https://github.com/TDesignOteam/create-tdesign/blob/main/README.md",
"bugs": {
"url": "https://github.com/TDesignOteam/create-tdesign/issues"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"typecheck": "tsc --noEmit"
},
"keywords": [
"tdesign",
"cli",
"scaffold",
"vite",
"rsbuild",
"vike",
"nuxt",
"next"
],
"devDependencies": {
"@clack/prompts": "^1.4.0",
"@types/node": "^25.8.0",
"mri": "^1.2.0",
"picocolors": "^1.1.1",
"tsdown": "^0.22.0",
"typescript": "^6.0.3"
}
}