-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"name": "@cycleplatform/api-client-typescript",
"version": "0.3.9",
"description": "A Cycle API client for the web/nodejs with type safety.",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"type": "module",
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./src/index.ts"
},
"require": {
"default": "./dist/index.umd.cjs",
"types": "./src/index.ts"
}
}
},
"types": "./src/index.ts",
"scripts": {
"test": "vitest",
"test:ts": "tsc --noEmit",
"build:client": "openapi-typescript ./api-spec/platform/api.yml --output ./src/generated/types.ts",
"build:lib": "npm run build:client && vite build",
"prepublishOnly": "npm run build:lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cycleplatform/api-client-typescript.git"
},
"keywords": [
"cycleplatform",
"api",
"client"
],
"author": "Petrichor Holdings, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cycleplatform/api-client-typescript/issues"
},
"homepage": "https://github.com/cycleplatform/api-client-typescript#readme",
"dependencies": {
"openapi-fetch": "0.13.4"
},
"devDependencies": {
"msw": "2.7.0",
"openapi-typescript": "7.6.0",
"typescript": "5.7.3",
"vite": "6.0.11",
"vitest": "3.0.4"
}
}