This repository was archived by the owner on Dec 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.41 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
59
60
61
62
{
"name": "create-ts-frame",
"version": "0.6.2",
"type": "module",
"author": {
"name": "hacxy",
"email": "hacxy.js@outlook.com",
"url": "https://github.com/hacxy"
},
"license": "MIT",
"description": "",
"homepage": "https://github.com/hacxy/create-ts-frame",
"repository": {
"type": "git",
"url": "git+https://github.com/hacxy/create-ts-frame.git"
},
"bugs": {
"url": "https://github.com/hacxy/create-ts-frame/issues"
},
"bin": {
"create-ts-frame": "dist/index.mjs",
"ctf": "dist/index.mjs"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"templates"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"sync-template": "rimraf templates && node scripts/sync-template.js",
"release": "release-it"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"keywords": [
"cli"
],
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"cross-spawn": "^7.0.3",
"degit": "^2.8.4",
"fs-extra": "^11.2.0",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"release-it": "^17.1.1",
"rimraf": "^5.0.5",
"tianjie": "^0.1.0",
"typescript": "^5.4.2",
"unbuild": "^2.0.0"
}
}