-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.71 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.71 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
97
98
99
100
101
102
103
104
105
{
"name": "@workos/oagen",
"version": "0.6.0",
"description": "Framework for building OpenAPI SDK emitters",
"author": "WorkOS",
"license": "MIT",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"engines": {
"node": ">=24.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/workos/oagen.git"
},
"bugs": {
"url": "https://github.com/workos/oagen/issues"
},
"homepage": "https://github.com/workos/oagen#readme",
"keywords": [
"openapi",
"sdk",
"generator",
"codegen",
"api"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./compat": {
"types": "./dist/compat/index.d.mts",
"import": "./dist/compat/index.mjs"
},
"./verify": {
"types": "./dist/verify/index.d.mts",
"import": "./dist/verify/index.mjs"
},
"./smoke": {
"types": "./dist/smoke.d.mts",
"import": "./dist/smoke.mjs"
}
},
"bin": {
"oagen": "dist/cli/index.mjs"
},
"files": [
"dist",
"skills",
".claude-plugin",
"docs",
"examples"
],
"scripts": {
"build": "tsdown",
"dev": "tsx src/cli/index.ts",
"lint": "oxlint --deny-warnings",
"lint:fix": "oxlint --fix",
"format": "oxfmt --check .",
"format:fix": "oxfmt --write .",
"format:md": "prettier --write '**/*.md'",
"lint:all": "oxlint --fix && oxfmt --write . && prettier --write '**/*.md'",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"smoke:raw": "tsx scripts/smoke/raw.ts",
"smoke:diff": "tsx scripts/smoke/diff.ts",
"smoke": "tsx scripts/smoke/sdk-test.ts",
"smoke:baseline": "tsx scripts/smoke/baseline.ts",
"smoke:validate": "tsx scripts/smoke/validate.ts",
"smoke:loop": "echo 'Use: oagen generate && oagen verify'",
"prepare": "husky"
},
"dependencies": {
"@redocly/openapi-core": "^2.25.1",
"commander": "^13.1.0",
"dotenv": "^17.3.1",
"tree-sitter": "^0.21.1",
"tree-sitter-c-sharp": "^0.23.1",
"tree-sitter-elixir": "^0.3.5",
"tree-sitter-go": "^0.23.4",
"tree-sitter-kotlin": "^0.3.8",
"tree-sitter-php": "^0.23.12",
"tree-sitter-python": "^0.21.0",
"tree-sitter-ruby": "^0.21.0",
"tree-sitter-rust": "^0.21.0",
"tree-sitter-typescript": "^0.23.2",
"tsx": "^4.19.0",
"typescript": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "^25.3.3",
"@vitest/coverage-v8": "^4.1.2",
"husky": "^9.1.7",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"prettier": "^3.8.1",
"tsdown": "^0.21.5",
"vitest": "^4.1.2"
}
}