forked from italodr/payload-plugin-tree-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.09 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
{
"name": "payload-plugin-tree-list",
"version": "0.0.3",
"type": "module",
"description": "A plugin for Payload CMS that adds a collapsible Tree list view.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Italo Devoto Ramella",
"url": "https://italodr.com"
},
"repository": {
"type": "git",
"url": "https://github.com/italodr/payload-plugin-tree-list.git"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"keywords": [
"payload",
"cms",
"plugin",
"tree-list",
"view",
"v3"
],
"scripts": {
"build": "yarn clean && yarn build:swc && yarn copyfiles && yarn build:types",
"build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"clean": "rm -rf dist",
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"prepublishOnly": "yarn clean && yarn build"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./server": {
"import": "./dist/exports/server/index.js",
"types": "./dist/exports/server/index.d.ts",
"default": "./dist/exports/server/index.js"
}
},
"dependencies": {
"@payloadcms/next": "3.0.1",
"@payloadcms/ui": "3.0.1",
"@radix-ui/react-collapsible": "1.1.1",
"next": "15.0.3",
"payload": "3.0.1",
"react": "19.0.0-rc-65a56d0e-20241020"
},
"devDependencies": {
"@payloadcms/eslint-config": "1.1.1",
"@payloadcms/eslint-plugin": "3.0.0",
"@swc/cli": "0.5.0",
"@swc/core": "1.9.1",
"@types/react": "npm:types-react@19.0.0-rc.0",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.0",
"copyfiles": "2.4.1",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"peerDependencies": {
"next": "15.0.3",
"payload": "3.0.1",
"react": "19.0.0-rc-65a56d0e-20241020"
}
}