-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.25 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@openapi-typescript-infra/openapi-typescript-enum",
"version": "2.1.4",
"description": "A version of openapi-typescript that also generates enumerations",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"bin": "build/bin/index.js",
"author": "Max Metral <developers@pyralis.com>",
"license": "MIT",
"packageManager": "yarn@3.6.1",
"config": {
"coconfig": "@openapi-typescript-infra/coconfig"
},
"repository": {
"type": "git",
"url": "https://github.com/openapi-typescript-infra/openapi-typescript-enum.git"
},
"keywords": [
"typescript",
"openapi"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"publishCmd": "yarn dlx pinst --disable"
}
],
"@semantic-release/npm",
"@semantic-release/git"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@openapi-typescript-infra/coconfig": "^4.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"coconfig": "^0.13.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
},
"scripts": {
"test": "tsc -p tsconfig.test.json --noEmit && vitest",
"lint": "eslint .",
"build": "tsc -p tsconfig.build.json && yarn dlx glob-chmod 755 build/bin/*",
"watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
"typecheck": "tsc --noEmit -p tsconfig.json",
"clean": "npx rimraf ./build",
"prepublishOnly": "yarn build",
"postinstall": "coconfig"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"eslint-import-resolver-typescript": "^3.6.0",
"openapi-typescript": "6.6.1",
"yargs-parser": "^21.1.1"
}
}