-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "instill-sdk",
"version": "0.14.0",
"description": "Instill AI's Typescript SDK",
"repository": "https://github.com/instill-ai/typescript-sdk.git",
"bugs": "https://github.com/instill-ai/community/issues",
"keywords": [
"instill-ai",
"SDK",
"Typescript"
],
"scripts": {
"build": "tsup && pnpm ts-types",
"dev": "tsup --watch",
"dev-ts": "tsc --watch --emitDeclarationOnly",
"ts-types": "tsc --emitDeclarationOnly",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --cache",
"publish-rc": "pnpm build && pnpm publish --no-git-checks",
"gen-mocks": "./generate_mocks.sh",
"integration-test": "vitest run --passWithNoTests --coverage",
"gen": "tsx generate-mocks/main.ts"
},
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"license": "Apache-2.0",
"private": false,
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@faker-js/faker": "^8.4.1",
"@instill-ai/eslint-config-cortex": "workspace:*",
"@instill-ai/prettier-config-cortex": "workspace:*",
"@instill-ai/tsconfig": "workspace:*",
"@types/lodash": "^4.17.7",
"@types/whatwg-fetch": "^0.0.33",
"@vitest/coverage-istanbul": "2.1.9",
"dotenv": "^16.0.1",
"lodash": "^4.17.21",
"msw": "^2.3.2",
"msw-auto-mock": "^0.25.0",
"oazapfts": "^6.1.0",
"swagger2openapi": "^7.0.8",
"tsup": "catalog:",
"tsx": "^4.6.2",
"vitest": "2.1.9",
"zod": "^3.23.8"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/json-schema": "^7.0.11",
"json-schema": "^0.4.0",
"openapi-types": "^12.1.3",
"whatwg-fetch": "^3.6.20"
}
}