-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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
49
50
51
52
53
54
55
{
"name": "zapi-inventory",
"version": "0.11.0",
"private": false,
"description": "TypeScript SDK for Zoho Inventory.",
"homepage": "https://github.com/matagaralph/zapi-inventory#readme",
"bugs": {
"url": "https://github.com/matagaralph/zapi-inventory/issues"
},
"license": "MIT",
"author": "Ralph Mataga",
"repository": {
"type": "git",
"url": "git+https://github.com/matagaralph/zapi-inventory.git"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"check": "vp check",
"prepublishOnly": "vp run build",
"prepare": "vp config",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"dependencies": {
"xior": "^0.8.3"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/bun": "^1.3.12",
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260328.1",
"bumpp": "^11.0.1",
"typescript": "^6.0.2",
"vite-plus": "^0.1.14"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "bun@1.3.12"
}