-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.55 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": "opas",
"version": "0.0.0",
"description": "Open API toolkits for TS/JS",
"workspaces": [
"packages/*",
"plugins/*"
],
"scripts": {
"test": "lerna run test",
"lint": "eslint . --ext=.ts,.tsx,.js,.jsx --fix",
"build": "lerna run build",
"release": "lerna publish --conventional-commits",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kagawagao/opas.git"
},
"keywords": [
"openAPI",
"api",
"toolkit"
],
"author": "kagawagao <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kagawagao/opas/issues"
},
"homepage": "https://github.com/kagawagao/opas#readme",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@pixas/eslint-config": "^0.13.0",
"@pixas/prettier-config": "^0.13.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.11",
"@types/json2md": "^1.5.4",
"@types/lodash": "^4.14.202",
"@types/signale": "^1.4.7",
"dts-bundle-generator": "^9.0.0",
"husky": "^9.0.6",
"jest": "^29.7.0",
"lerna": "^8.0.1",
"lint-staged": "^15.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"prettier": "@pixas/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,md}": [
"prettier -c --write"
]
}
}