-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"$schema": "https://json.schemastore.org/package",
"name": "strapi-plugin-slugify",
"version": "2.3.8",
"description": "A plugin for Strapi Headless CMS that provides the ability to auto slugify a field for any content type.",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier --write **/*.{ts,js,json,yml}"
},
"author": {
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
},
"maintainers": [
{
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
}
],
"homepage": "https://github.com/ComfortablyCoding/strapi-plugin-slugify#readme",
"repository": {
"type": "git",
"url": "https://github.com/ComfortablyCoding/strapi-plugin-slugify.git"
},
"bugs": {
"url": "https://github.com/ComfortablyCoding/strapi-plugin-slugify/issues"
},
"dependencies": {
"@sindresorhus/slugify": "1.1.0",
"@strapi/strapi": "^4.14.0",
"@strapi/utils": "^4.14.0",
"lodash": "^4.17.21",
"yup": "^0.32.9"
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.1.0"
},
"strapi": {
"displayName": "Slugify",
"name": "slugify",
"description": "A plugin for Strapi Headless CMS that provides the ability to auto slugify a field for any content type.",
"kind": "plugin"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"keywords": [
"strapi",
"strapi-plugin",
"plugin",
"strapi plugin",
"slug",
"slugify"
],
"license": "MIT"
}