-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.58 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
{
"name": "@civitai/orchestration-client",
"version": "0.2.0-beta.110",
"description": "Civitai's javascript client for generating ai content",
"packageManager": "pnpm@10.34.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/civitai/civitai-client-javascript.git"
},
"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-ts && node scripts/fix-discriminators.mjs",
"build": "tsc && eslint --fix dist",
"test": "jest",
"prepublishOnly": "pnpm test && pnpm build",
"prepare": "tsc",
"typecheck": "tsc --noEmit",
"release": "pnpm typecheck && pnpm build && pnpm publish --tag beta"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.94.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"dotenv": "^16.4.4",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.9.2"
},
"dependencies": {
"@hey-api/client-fetch": "^0.1.6",
"rfc6902": "^5.1.1",
"tslib": "^2.6.2"
},
"publishConfig": {
"access": "public"
}
}