forked from tienngang/payload-icon-picker-field
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.88 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.88 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
{
"name": "@innovixx/payload-icon-picker-field",
"version": "1.0.0-beta.7",
"homepage:": "https://innovixx.co.uk",
"repository": "[email protected]:Innovixx-Development/payload-icon-picker-field.git",
"description": "payload-icon-picker-field",
"type": "module",
"scripts": {
"build": "tsc && pnpm copy:scss",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"copy:scss": "copyfiles -u 1 \"src/**/*.scss\" dist",
"watch": "nodemon --watch src -e ts,tsx,scss --exec \"pnpm build\""
},
"keywords": [
"payload",
"cms",
"field",
"typescript",
"react",
"icons",
"selector"
],
"author": "[email protected]",
"license": "MIT",
"peerDependencies": {
"next": "^15.0.0",
"payload": "^3.2.2",
"react": "^19.0.0"
},
"devDependencies": {
"@payloadcms/eslint-config": "^3.0.0",
"@payloadcms/next": "3.16.0",
"@payloadcms/translations": "3.16.0",
"@payloadcms/ui": "3.16.0",
"@types/node": "^20.14.14",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"next": "15.1.3",
"nodemon": "^2.0.6",
"payload": "3.16.0",
"prettier": "^2.7.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"ts-essentials": "^10.0.3",
"ts-node": "^9.1.1",
"typescript": "5.7.2"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./components": {
"import": "./dist/components/index.js",
"types": "./dist/components/index.d.ts",
"default": "./dist/components/index.js"
}
}
}