-
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.72 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.72 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": "payload-plugin-unirate",
"version": "0.1.0",
"description": "Payload CMS v3 plugin for the UniRate currency-exchange API — server-side proxy endpoints (rate/convert/currencies/vat) and a prefilled currency select field. Zero runtime deps.",
"type": "module",
"license": "MIT",
"author": "Unirate Team",
"homepage": "https://github.com/UniRate-API/payload-plugin-unirate#readme",
"bugs": "https://github.com/UniRate-API/payload-plugin-unirate/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/UniRate-API/payload-plugin-unirate.git"
},
"keywords": [
"payload",
"payload-plugin",
"payloadcms",
"payload-cms",
"unirate",
"currency",
"currency-converter",
"exchange-rates",
"forex",
"fx",
"vat",
"fintech"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run build"
},
"peerDependencies": {
"payload": ">=3.0.0"
},
"peerDependenciesMeta": {
"payload": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.19.9",
"typescript": "^5.9.2",
"vitest": "^4.1.7"
},
"engines": {
"node": ">=18.20.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}