-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.12 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
{
"name": "payload-plugin-email-test",
"version": "0.1.4",
"homepage:": "https://sandtoken.com/loadpack",
"description": "Simple email test plugin for Payload CMS",
"author": "[email protected]",
"license": "MIT",
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"main": "./src/index.ts",
"types": "./src/index.ts",
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json",
"build:all": "pnpm build && pnpm -C dev build",
"build:app": "pnpm -C dev build",
"clean": "rimraf {dist,*.tsbuildinfo,package}",
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png}\" dist/",
"dev": "pnpm -C dev dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "pnpm prepublishOnly",
"prepublishOnly": "pnpm clean && pnpm build && pnpm copyfiles",
"payload": "payload",
"generate": "pnpm -C dev generate:types generate:importmap",
"knip": "knip"
},
"peerDependencies": {
"@payloadcms/next": "^3.0.2",
"@payloadcms/ui": "^3.0.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"next": "^15.0.0",
"payload": "^3.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/node": "22.7.5",
"copyfiles": "^2.4.1",
"knip": "^5.39.2",
"payload": "^3.0.2",
"rimraf": "^6.0.1",
"typescript": "5.5.3"
},
"publishConfig": {
"main": "./dist/index.js",
"registry": "https://registry.npmjs.org/",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"import": "./dist/index.client.js",
"types": "./dist/index.client.d.ts",
"default": "./dist/index.client.js"
}
}
},
"exports": {
".": {
"import": "./src/index.ts",
"default": "./src/index.ts",
"types": "./src/index.ts"
},
"./client": {
"import": "./src/index.client.ts",
"default": "./src/index.client.ts",
"types": "./src/index.client.ts"
}
}
}