-
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) · 2.12 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.12 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": "oapi-litegraph-nodegen",
"version": "1.0.0",
"description": "Generate dynamic and callable LiteGraph nodes from OpenAPI specifications, enabling seamless API integration in a visual programming environment",
"keywords": [
"litegraph",
"openapi",
"swagger",
"node-generator",
"visual-programming",
"api-integration"
],
"bugs": {
"url": "https://github.com/soldarlabs/oapi-litegraph-nodegen/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/soldarlabs/oapi-litegraph-nodegen"
},
"license": "MIT",
"author": "Rick Staa",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "NODE_ENV=production tsup",
"dev": "NODE_ENV=development tsup --watch",
"build:demo": "cd demo && npm install && npm run build",
"start:demo": "cd demo && npm install && npm run build && npm run dev",
"clean": "rm -rf dist demo/dist node_modules && npm cache clean --force",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write src/**/*.{js,ts,tsx,jsx,json,css,scss,md} **/*.{md}",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"deps:check": "ncu",
"deps:update": "ncu -u && npm install",
"sort-package-json": "sort-package-json"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"litegraph.js": "^0.7.18",
"loglevel": "^1.9.2",
"openapi-typescript": "^7.4.4"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"jest": "^29.7.0",
"jsdom": "^25.0.1",
"nock": "^13.5.6",
"npm-check-updates": "^17.1.11",
"prettier": "^3.4.2",
"sort-package-json": "^2.12.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"engines": {
"node": ">=18.0.0"
}
}