forked from polarsource/polar-adapters
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.04 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
{
"name": "@polar-sh/fastify",
"version": "0.5.1",
"description": "Polar integration for Fastify",
"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"
}
},
"engines": {
"node": ">=18"
},
"type": "module",
"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",
"fastify",
"payments",
"subscriptions"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@sindresorhus/tsconfig": "^7.0.0",
"@types/node": "^20.0.0",
"fastify": "^5.6.2",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
"vitest": "^2.1.8"
},
"dependencies": {
"@polar-sh/adapter-utils": "workspace:*",
"@polar-sh/sdk": "^0.41.5"
},
"peerDependencies": {
"fastify": "^5.2.1"
}
}