-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.52 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
56
57
58
59
60
61
62
63
64
65
{
"name": "@decartai/proxy",
"version": "0.0.1",
"description": "Server-side proxy middleware for Decart SDK",
"type": "module",
"license": "MIT",
"private": false,
"homepage": "https://github.com/decartai/sdk#readme",
"bugs": {
"url": "https://github.com/decartai/sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DecartAI/sdk"
},
"author": "Adir Amsalem <adir@decart.ai>",
"sideEffects": false,
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./express": "./dist/express/middleware.js",
"./nextjs": "./dist/nextjs/route.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit",
"format": "biome format --write",
"format:check": "biome check",
"lint": "biome lint",
"test": "vitest",
"release": "bumpp --tag 'proxy-v%s'"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/express": "^4.17.21",
"@types/node": "^22.15.17",
"bumpp": "^10.3.2",
"msw": "^2.11.3",
"tsdown": "^0.14.1",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"express": "^4.18.0",
"next": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"next": {
"optional": true
}
}
}