-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.59 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "gev",
"type": "module",
"version": "3.0.14",
"description": "Sets up templates",
"keywords": [
"generator",
"template",
"setup",
"creator",
"starter",
"project",
"boilerplate",
"bun"
],
"homepage": "https://github.com/SrBrahma/gev#readme",
"bugs": {
"url": "https://github.com/SrBrahma/gev/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SrBrahma/gev.git"
},
"license": "MIT",
"author": "SrBrahma",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"files": [
"dist",
".bun-create"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"start": "bun ./src/index.ts",
"typecheck": "tsc --noEmit",
"tsw": "tsc --noEmit --watch",
"format:check": "bun eslint && bun prettier \"**/*.{ts,tsx}\"",
"format": "bun eslint --fix && bun prettier --write \"**/*.{ts,tsx}\"",
"prepare": "husky install",
"pre-commit": "bun test"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"chalk": "5.3.0",
"commander": "11.1.0",
"inquirer": "9.1.4",
"semver-compare": "1.0.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.2",
"@types/semver-compare": "^1.0.3",
"bun-types": "latest",
"eslint-config-gev": "^3.8.1",
"husky": "^8.0.1",
"lint-staged": "13.0.3",
"prettier": "^2.8.1",
"prettier-config-gev": "^1.1.2",
"rimraf": "^5.0.5",
"typescript": "5.3.3"
},
"prettier": "prettier-config-gev"
}