-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 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
{
"name": "@dtsgenerator/create",
"version": "1.9.0",
"description": "This repository is the create command for dtsgenerator plugin.",
"main": "./bin/create.js",
"publishConfig": {
"access": "public"
},
"bin": {
"create": "./bin/create.js"
},
"scripts": {
"format": "prettier --write src/*.ts",
"lint": "eslint --fix src/*.ts",
"fix": "npm run format && npm run lint",
"compile": "tsc -p .",
"build": "npm run fix && npm run compile",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dtsgenerator/create.git"
},
"keywords": [
"dtsgenerator"
],
"author": "horiuchi",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtsgenerator/create/issues"
},
"homepage": "https://github.com/dtsgenerator/create#readme",
"dependencies": {
"commander": "^12.1.0",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.2.0",
"mustache": "^4.2.0",
"tslib": "^2.6.3",
"validate-npm-package-name": "^5.0.1"
},
"devDependencies": {
"@dtsgenerator/eslint-config": "^0.7.2",
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/mustache": "^4.2.5",
"@types/node": "^18.19.36",
"@types/validate-npm-package-name": "^4.0.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
},
"lint-staged": {
"src/*.ts": [
"prettier --write",
"eslint --fix"
]
}
}