-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.2 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
{
"name": "@openapi-generator-plus/kotlin-client-generator",
"version": "0.3.0",
"description": "An OpenAPI Generator Plus template for a Kotlin API client using Ktor",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "pnpm@10.34.3",
"keywords": [
"openapi-generator-plus",
"openapi-generator-plus-generator",
"openapi",
"openapi-generator",
"kotlin",
"client",
"ktor"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"clean": "rimraf dist",
"link": "pnpm link --global openapi-generator-plus $(cd node_modules && find @openapi-generator-plus -depth 1 -prune) && pnpm link --global",
"lint": "eslint src/**",
"release": "pnpm clean && pnpm build && pnpm test && pnpm changeset publish && pnpm install",
"release:version": "pnpm changeset version && pnpm install",
"test": "jest",
"watch": "tsc --watch"
},
"author": "Karl von Randow, Hyung Park",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Letterboxd/openapi-generator-plus-kotlin-client-generator/issues"
},
"homepage": "https://github.com/Letterboxd/openapi-generator-plus-kotlin-client-generator#readme",
"dependencies": {
"@openapi-generator-plus/generator-common": "^1.7.3",
"@openapi-generator-plus/handlebars-templates": "^1.11.5",
"@openapi-generator-plus/indexed-type": "^1.0.0",
"@openapi-generator-plus/java-like-generator-helper": "^2.6.3",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"@openapi-generator-plus/testing": "^2.26.0",
"@openapi-generator-plus/types": "^2.22.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"eslint-plugin-jest": "^29.15.1",
"glob": "^13.0.6",
"globals": "^17.4.0",
"jest": "^30.3.0",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Letterboxd/openapi-generator-plus-kotlin-client-generator.git"
}
}