-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.08 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.08 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
{
"name": "@celluloid/vision-api",
"version": "1.5.0",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@9.0.0",
"repository": {
"type": "git",
"url": "https://github.com/celluloid-camp/vision-api"
},
"exports": {
".": {
"types": "./dist/sdk.gen.d.ts",
"default": "./dist/sdk.gen.js"
},
"./client": {
"types": "./dist/client/client.gen.d.ts",
"default": "./dist/client/client.gen.js"
},
"./schemas": {
"types": "./dist/schemas.gen.d.ts",
"default": "./dist/schemas.gen.js"
},
"./types": {
"types": "./dist/types.gen.d.ts",
"default": "./dist/types.gen.js"
}
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm run build:clean && pnpm run generate && tsc",
"build:clean": "shx rm -rf ./dist",
"generate": "openapi-ts",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.94.2",
"@tsconfig/recommended": "^1.0.13",
"shx": "^0.4.0",
"typescript": "^5.9.3"
}
}