-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.35 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.35 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "openapi-client-codegen",
"version": "0.2.0",
"description": "Node.js library that generates Typescript function chaining clients based on the OpenAPI specification.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdown",
"changeset": "changeset",
"check": "pnpm run lint && pnpm run format:check && pnpm run typecheck && pnpm run test && pnpm run package:check",
"clean": "rimraf dist coverage",
"commit": "cz",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"package:check": "pnpm run build && publint",
"prepack": "pnpm run build",
"release": "pnpm run check && changeset publish",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"version-packages": "changeset version"
},
"packageManager": "pnpm@11.3.0",
"author": "unadlib",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jskits/openapi-chain.git"
},
"bugs": {
"url": "https://github.com/jskits/openapi-chain/issues"
},
"homepage": "https://github.com/jskits/openapi-chain#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"openapi-client-codegen",
"openapi",
"openapi-client"
],
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"commitizen": "^4.3.0",
"cz-git": "^1.13.1",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"publint": "^0.3.21",
"rimraf": "^6.1.3",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"cz-git": {
"scopes": [
"build",
"ci",
"deps",
"docs",
"release",
"test"
]
}
}