-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 987 Bytes
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 987 Bytes
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
{
"name": "dynamic-openapi-skill",
"version": "0.1.3",
"description": "Transform any OpenAPI v3 spec into a Claude Code skill",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"dynamic-openapi-skill": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:run": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"openapi",
"skill",
"claude",
"claude-code",
"ai",
"llm",
"swagger"
],
"license": "MIT",
"dependencies": {
"dynamic-openapi-tools": "^1.1.1",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/node": "^25.2.2",
"@vitest/coverage-v8": "^3.2.4",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}