-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.82 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.82 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@fresh.codes/strapi-plugin-export-csv",
"description": "A CSV export plugin for Strapi v5 that adds export functionality to the admin panel with configuration options.",
"license": "MIT",
"author": "Fresh Codes <hello@fresh.codes>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/freshcodes/strapi-plugin-export-csv.git"
},
"bugs": {
"url": "https://github.com/freshcodes/strapi-plugin-export-csv/issues"
},
"homepage": "https://github.com/freshcodes/strapi-plugin-export-csv#readme",
"version": "1.0.2",
"keywords": [
"strapi",
"plugin",
"export",
"csv"
],
"strapi": {
"kind": "plugin",
"name": "export-csv",
"displayName": "Export CSV",
"description": "A CSV export plugin for Strapi v5 that adds export functionality to the admin panel with configuration options."
},
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write --ignore-unknown .",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.29",
"@strapi/icons": "^2.0.0-rc.29",
"csv-stringify": "^6.6.0",
"react-intl": "^7.1.11"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@strapi/sdk-plugin": "^5.3.2",
"@strapi/strapi": "^5.21.0",
"@strapi/typescript-utils": "^5.21.0",
"@types/csv-stringify": "^3.1.3",
"@types/qs": "^6.14.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"styled-components": "^6.1.19",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.3.2",
"@strapi/strapi": "^5.18.1",
"axios": "^1.8.0",
"qs": "^6.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"styled-components": "^6.1.19"
}
}