-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.04 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": "@jhb.software/payload-geocoding-plugin",
"version": "0.1.5",
"description": "Geocoding field plugin for Payload CMS",
"author": "JHB Software",
"license": "MIT",
"bugs": "https://github.com/jhb-software/payload-plugins/issues",
"repository": "https://github.com/jhb-software/payload-plugins",
"keywords": [
"payload",
"plugin",
"geocoding"
],
"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",
"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 build && pnpm copyfiles"
},
"dependencies": {
"react-google-places-autocomplete": "^4.1.0"
},
"peerDependencies": {
"next": "15.0.0",
"payload": "^3.5.0",
"@payloadcms/ui": "^3.5.0",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"typescript": "5.7.2"
},
"publishConfig": {
"main": "./dist/index.js",
"registry": "https://registry.npmjs.org/",
"types": "./dist/index.d.ts",
"access": "public",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"import": "./dist/exports/client.js",
"types": "./dist/exports/client.d.ts",
"default": "./dist/exports/client.js"
}
}
},
"exports": {
".": {
"import": "./src/index.ts",
"default": "./src/index.ts",
"types": "./src/index.ts"
},
"./client": {
"import": "./src/exports/client.ts",
"default": "./src/exports/client.ts",
"types": "./src/exports/client.ts"
}
}
}