-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.31 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
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
{
"name": "airhorn",
"version": "3.1.0",
"description": "Cloud Notification Library",
"type": "module",
"main": "./dist/airhorn.js",
"types": "./dist/airhorn.d.ts",
"exports": {
".": {
"import": "./dist/airhorn.js"
}
},
"engines": {
"node": ">=20"
},
"repository": "https://github.com/jaredwray/airhorn.git",
"author": "Jared Wray <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "xo --fix && vitest run --coverage",
"clean": "rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml ./site/dist",
"prepare": "npm run build",
"build": "rimraf ./dist && tsup src/airhorn.ts --format esm --dts --clean",
"website:build": "rimraf ./site/readme.md && npx -y docula build -s ./site -o ./site/dist",
"website:serve": "rimraf ./site/readme.md && npx -y docula serve -s ./site -o ./site/dist",
"test:services:start": "docker compose -f docker-compose.yml up -d",
"test:services:stop": "docker compose -f docker-compose.yml down"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@vitest/coverage-v8": "^2.1.2",
"docula": "^0.9.4",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.2",
"webpack": "^5.95.0",
"xo": "^0.59.3"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.665.0",
"@aws-sdk/client-sns": "^3.665.0",
"@sendgrid/mail": "^8.1.3",
"axios": "^1.7.7",
"cacheable": "^1.8.1",
"ecto": "^4.1.3",
"firebase-admin": "^12.6.0",
"gray-matter": "^4.0.3",
"mongodb": "^6.9.0",
"twilio": "^5.3.3"
},
"files": [
"dist",
"LISCENSE"
],
"xo": {
"rules": {
"@typescript-eslint/naming-convention": 0,
"@typescript-eslint/object-curly-spacing": 0,
"@typescript-eslint/parameter-properties": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/no-redundant-type-constituents": 0,
"no-console": 0,
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never",
"mjs": "never"
}
]
}
}
}