-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 729 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 729 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
{
"name": "comfyone-sdk",
"version": "1.0.0",
"description": "TypeScript version of ComfyOne SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && copyfiles \"examples/*.json\" dist",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"ws": "^8.16.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.17.47",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"axios": "^1.9.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"form-data": "^4.0.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}