-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.37 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.37 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
{
"name": "@rubixstudios/payload-usesend",
"version": "1.0.14",
"description": "PayloadCMS adapter for sending emails via the useSend API (previously Unsend).",
"license": "MIT",
"author": "Rubix Studios <hello@rubixstudios.com.au> (https://rubixstudios.com.au)",
"homepage": "https://rubixstudios.com.au",
"repository": {
"type": "git",
"url": "git+https://github.com/rubix-studios-pty-ltd/payload-usesend.git"
},
"bugs": {
"url": "https://github.com/rubix-studios-pty-ltd/payload-usesend/issues"
},
"maintainers": [
{
"name": "Rubix Studios",
"email": "hello@rubixstudios.com.au",
"url": "https://rubixstudios.com.au"
}
],
"type": "module",
"keywords": [
"payload",
"payloadcms",
"payload-plugin",
"payloadcms-v3",
"payloadcms-3",
"payload-adapter",
"usesend",
"unsend",
"email",
"email-adapter",
"transactional-email",
"plugin",
"cms",
"adapter",
"rubixstudios"
],
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": ["dist"],
"scripts": {
"build": "pnpm build:types && pnpm build:swc",
"build:swc": "swc ./src -d ./dist --config-file .swcrc-build --strip-leading-paths",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"clean": "rimraf -g {dist,*.tsbuildinfo} && pnpm exec biome check --write && pnpm biome migrate --write",
"test": "jest",
"update": "pnpm update --latest && pnpm install && pnpm prune && pnpm dedupe && pnpm run clean",
"release": "semantic-release"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@jest/globals": "^30.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.32",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"jest": "^30.3.0",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"typescript": "^6.0.3"
},
"peerDependencies": {
"payload": "^3.84.0"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"packageManager": "pnpm@10.33.2"
}