-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.94 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.94 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
66
67
68
69
70
71
72
73
74
{
"name": "stripe-sync-engine",
"version": "0.1.0",
"description": "Stripe Sync Engine to sync Stripe data based on webhooks to Postgres",
"type": "module",
"main": "./dist/index.cjs",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsup src/index.ts --format esm,cjs --dts && cp -r src/database/migrations dist/migrations",
"lint": "biome lint",
"format": "biome format --write",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"files": [
"dist"
],
"dependencies": {
"pg": "^8.16.3",
"pg-node-migrations": "0.0.8",
"yesql": "^7.0.0"
},
"peerDependencies": {
"stripe": "> 11"
},
"devDependencies": {
"@biomejs/biome": "^2.3.4",
"@types/node": "^24.10.0",
"@types/pg": "^8.15.5",
"@types/yesql": "^4.1.4",
"@vitest/ui": "^4.0.8",
"husky": "^9.1.7",
"pg-mem": "^3.0.5",
"pino": "^10.1.0",
"rimraf": "^6.1.0",
"stripe": "^19.0.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"repository": {
"type": "git",
"url": "https://github.com/ashutoshpw/stripe-sync-engine.git"
},
"homepage": "https://github.com/ashutoshpw/stripe-sync-engine#readme",
"bugs": {
"url": "https://github.com/ashutoshpw/stripe-sync-engine/issues"
},
"keywords": [
"stripe",
"postgres",
"sync",
"webhooks",
"billing",
"database",
"typescript"
],
"author": "Ashutosh Kumar <ashutoshpw@no-reply.github.com>",
"packageManager": "pnpm@10.21.0+sha512.da3337267e400fdd3d479a6c68079ac6db01d8ca4f67572083e722775a796788a7a9956613749e000fac20d424b594f7a791a5f4e2e13581c5ef947f26968a40"
}