-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.61 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.61 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
{
"name": "@openclaw/api-to-ts-interface",
"version": "1.0.0",
"description": "Automatically generates TypeScript interfaces from REST API responses with Storybook-style documentation UI.",
"main": "dist/cli.js",
"bin": {
"ts-interface": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "node dist/cli.js",
"dev": "ts-node scripts/cli.ts",
"lint": "eslint scripts --ext .ts",
"format": "prettier --write scripts/ references/ assets/",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"openclaw",
"skill",
"typescript",
"api",
"rest",
"interface",
"generator",
"storybook",
"documentation",
"json",
"codegen"
],
"author": "OpenClaw Community",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openclaw/skill-api-to-ts-interface"
},
"files": [
"dist",
"scripts",
"references",
"assets",
"SKILL.md",
"README.md"
],
"dependencies": {
"commander": "^12.1.0",
"prettier": "^3.3.2",
"typescript": "^5.5.4",
"jsonschema": "^1.4.0",
"fast-xml-parser": "^4.4.1",
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/node": "^20.14.12",
"@types/prettier": "^2.7.4",
"ts-node": "^10.9.2",
"eslint": "^8.57.0",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.12"
},
"engines": {
"node": ">=18.0.0"
},
"os": ["darwin", "linux", "win32"],
"publishConfig": {
"access": "public"
}
}