-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.26 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
{
"name": "create-antlr4",
"version": "0.0.0",
"description": "",
"author": "Hayden",
"license": "MIT",
"type": "module",
"bin": {
"create-antlr4": "index.js"
},
"files": [
"index.js",
"templates",
"dist"
],
"keywords": [
"antlr4",
"antlr4ng",
"cli",
"javascript",
"typescript",
"generate"
],
"scripts": {
"prepublishOnly": "npm run build",
"format": "prettier --write .",
"stylecheck": "prettier --check .",
"typecheck": "tsc --noEmit",
"build": "unbuild",
"prepare": "husky"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HaydenOrz/create-antlr4.git"
},
"bugs": {
"url": "https://github.com/HaydenOrz/create-antlr4/issues"
},
"homepage": "https://github.com/HaydenOrz/create-antlr4",
"devDependencies": {
"@types/node": "^20.14.12",
"@types/prompts": "^2.4.9",
"husky": "^9.1.3",
"kleur": "^3.0.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"typescript": "^5.5.4",
"unbuild": "^2.0.0"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
]
}
}