-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.49 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
{
"name": "@undb/js-sdk",
"version": "0.0.5",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"description": "undb javascript sdk",
"scripts": {
"build": "tsup src/index.ts --env.NODE_ENV production",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"test:watch": "bun --watch test",
"lint": "biome check src",
"lint:fix": "biome check --apply src",
"format": "biome format src --write",
"release": "changeset publish",
"changelog": "changeset",
"prepublishOnly": "bun run build"
},
"keywords": [
"bun"
],
"license": "MIT",
"homepage": "https://github.com/wobsoriano/pkg-name#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/undb-io/js-sdk.git"
},
"bugs": "https://github.com/undb-io/js-sdk/issues",
"author": "nichenqin <[email protected]>",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.7",
"@types/bun": "^1.1.6",
"bun-plugin-dts": "^0.2.3",
"bun-types": "^1.1.25",
"msw": "^2.3.5",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"peerDependencies": {
"openapi-fetch": "^0.11.1"
},
"dependencies": {
"ky": "^1.7.2"
}
}