generated from KusionStack/.github
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.24 KB
/
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
42
43
44
45
46
47
48
49
{
"name": "@kusionstack/kusion-api-client-sdk",
"version": "1.0.3",
"description": "Kusion API Client SDK",
"main": "dist/src/client/index.js",
"types": "dist/src/client/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"type-check": "tsc -p tsconfig.json --noEmit",
"build": "tsc -p tsconfig.build.json",
"tsc": "tsc",
"clean": "rm -rf dist",
"prepare": "yarn clean && yarn build",
"openapi-ts": "openapi-ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"docs": "typedoc --out docs src/client/index.ts"
},
"dependencies": {
"@hey-api/client-fetch": "^0.5.2"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.59.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.56.0",
"typedoc": "^0.27.4",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KusionStack/kusion-typescript-sdk.git"
},
"keywords": [
"Kusion",
"Kusion Server",
"KusionStack"
],
"license": "Apache-2.0",
"author": "Yang Yang",
"homepage": "https://github.com/KusionStack/kusion-typescript-sdk#readme",
"publishConfig": {
"access": "public"
}
}