-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "create-bolt-cep",
"version": "1.2.6",
"license": "MIT",
"bin": {
"create-bolt-cep": "dist/index.js"
},
"files": [
"dist/*"
],
"main": "dist/index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepare": "npm run build",
"publish": "npm publish --access public",
"start": "node dist/index.js",
"test": "node scripts/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyper-brew/create-bolt-cep.git",
"directory": "packages/create-vite"
},
"bugs": {
"url": "https://github.com//hyper-brew/create-bolt-cep/issues"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"bolt-cep": "^1.2.6",
"execa": "^5.1.1",
"fs-extra": "^10.0.1",
"picocolors": "^1.0.0",
"resolve-dir": "^1.0.1",
"ts-morph": "^17.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.9.5",
"yargs": "^17.4.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.23",
"@types/yargs": "^17.0.10"
}
}