-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.19 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "audiencesync",
"version": "1.0.0",
"description": "Secure, in-memory Reverse ETL that extracts high-value customers from your database or Stripe, hashes their PII with SHA-256, and syncs them to Meta Custom Audiences and Google Customer Match — no CSV files, ever.",
"keywords": [
"reverse-etl",
"customer-match",
"custom-audience",
"meta-ads",
"google-ads",
"martech",
"audience-sync",
"pii-hashing",
"sha256",
"etl",
"stripe",
"postgres",
"mysql"
],
"license": "MIT",
"author": "AudienceSync Contributors",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"audiencesync": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"sync": "node dist/index.js sync",
"schedule": "node dist/index.js schedule",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"axios": "^1.7.7",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"mysql2": "^3.11.3",
"node-cron": "^3.0.3",
"pg": "^8.13.0",
"pg-query-stream": "^4.16.0",
"stripe": "^16.12.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.7.4",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.10",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"prettier": "^3.9.1",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.62.0",
"vitest": "^2.1.2"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm"
],
"target": "es2022",
"platform": "node",
"sourcemap": true,
"clean": true,
"dts": true,
"shims": true,
"banner": {
"js": "#!/usr/bin/env node"
}
}
}