-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.15 KB
/
package.json
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
{
"name": "create-cxx",
"version": "0.1.31",
"type": "module",
"license": "MIT",
"author": "Loïc Chen",
"homepage": "https://github.com/painfulexistence/create-cxx",
"repository": {
"type": "git",
"url": "[email protected]:painfulexistence/create-cxx.git"
},
"keywords": [
"c++",
"cmake",
"vcpkg",
"node",
"bun",
"raylib",
"magnum",
"sfml",
"sdl2",
"sdl3",
"libtcod",
"ogre"
],
"bin": {
"create-cxx": "index.js",
"cxx": "index.js"
},
"files": [
"index.js",
"templates",
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild --minify",
"format": "bunx prettier . --write",
"prepublishOnly": "bun run build",
"release": "release-it"
},
"devDependencies": {
"@inquirer/prompts": "^4.3.2",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/bun": "latest",
"ansicolor": "^2.0.3",
"commander": "^12.0.0",
"cross-spawn": "^7.0.3",
"prettier": "^3.2.5",
"release-it": "^17.2.0",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}