-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "civots",
"description": "Civots is a client library for accessing the Civo cloud API.",
"version": "0.0.1",
"type": "module",
"files": ["dist"],
"main": "./dist/civots.js",
"types": "./dist/civots.d.ts",
"exports": {
".": {
"import": "./dist/civots.js",
"types": "./dist/civots.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepublishOnly": "pnpm run build",
"preview": "vite preview",
"test": "vitest",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"check": "biome check --apply .",
"docs": "pnpm dlx typedoc src/resources/**/*.ts"
},
"peerDependencies": {
"tiny-invariant": "^1.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "1.7.2",
"@faker-js/faker": "^8.4.1",
"msw": "^2.2.14",
"tiny-invariant": "^1.3.3",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.0",
"vitest": "^1.6.0",
"zod": "^3.23.6"
},
"repository": {
"type": "git",
"url": "https://github.com/civo/civojs"
},
"dependencies": {
"ofetch": "^1.3.4"
}
}