-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 978 Bytes
/
package.json
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
{
"name": "civitai",
"version": "0.1.14",
"description": "JavaScript client for Civitai's generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/civitai/civitai-javascript",
"demo": "https://sdk.civitai.com/",
"files": [
"dist",
"README.md",
"dist/index.d.ts",
"dist/index.js",
"package.json"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=7.19.0",
"git": ">=2.11.0",
"yarn": ">=1.7.0"
},
"scripts": {
"generate": "openapi --input ./swagger.json --output ./generated",
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm test && npm run build"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"dotenv": "^16.4.4",
"jest": "^29.7.0",
"openapi-typescript-codegen": "^0.27.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"tslib": "^2.6.2",
"zod": "^3.22.4"
}
}