forked from MaksZhukov/strapi-plugin-generate-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.52 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.52 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
{
"name": "strapi-plugin-generate-data",
"version": "1.0.28",
"description": "The plugin can help generate random data for your content.",
"keywords": [
"strapi",
"plugin",
"data",
"generate",
"open source",
"nodejs",
"javascript",
"react",
"typescript"
],
"strapi": {
"name": "generate-data",
"displayName": "Generate data",
"description": "The plugin can help generate random data for your content.",
"kind": "plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/MaksZhukov/strapi-generate-data.git"
},
"dependencies": {
"@faker-js/faker": "^8.1.0",
"@strapi/design-system": "^1.6.3",
"@strapi/helper-plugin": "^4.6.1",
"@strapi/icons": "^1.11.0",
"axios": "^0.27.2",
"mime-types": "^2.1.35",
"qs": "^6.11.0",
"randexp": "^0.5.3",
"slugify": "^1.6.5",
"typescript": "4.9.5"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0"
},
"author": {
"name": "Maksim Zhukau",
"email": "maks_zhukov_97@mail.ru",
"url": "https://github.com/MaksZhukov"
},
"maintainers": [
{
"name": "Maksim Zhukau",
"email": "maks_zhukov_97@mail.ru",
"url": "https://github.com/MaksZhukov"
}
],
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"scripts": {
"postinstall": "tsc",
"develop": "tsc -w",
"build": "tsc"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.13.0"
}
}