-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.11 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": "@polar-sh/hono",
"version": "0.2.16",
"description": "Polar integration for Hono",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "vitest",
"build": "tsup ./src/index.ts --format esm,cjs --dts --clean --sourcemap",
"dev": "tsc --watch",
"check": "biome check --write ./src"
},
"files": [
"dist"
],
"keywords": [
"polar",
"hono",
"payments",
"subscriptions"
],
"peerDependencies": {
"hono": "^4.6.16"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@sindresorhus/tsconfig": "^7.0.0",
"@types/node": "^20.0.0",
"hono": "^4.6.16",
"prettier": "^3.2.5",
"tsup": "^8.3.5",
"vitest": "^2.1.8"
},
"dependencies": {
"@polar-sh/adapter-utils": "workspace:*",
"@polar-sh/sdk": "^0.24.0"
}
}