-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
61
62
63
64
{
"$schema": "https://json.schemastore.org/package",
"name": "strapi-plugin-slug-transliterate",
"version": "1.0.0",
"description": "A plugin for Strapi Headless CMS that provides the ability to slugify fields by transliteration based on strapi-plugin-slugify.",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier --write **/*.{ts,js,json,yml}"
},
"author": {
"name": "@nelsliu9121",
"url": "https://github.com/nelsliu9121"
},
"maintainers": [
{
"name": "@nelsliu9121",
"url": "https://github.com/nelsliu9121"
}
],
"homepage": "https://github.com/nelsliu9121/strapi-plugin-slug-transliterate#readme",
"repository": {
"type": "git",
"url": "https://github.com/nelsliu9121/strapi-plugin-slug-transliterate.git"
},
"bugs": {
"url": "https://github.com/nelsliu9121/strapi-plugin-slug-transliterate/issues"
},
"dependencies": {
"@sindresorhus/slugify": "1.1.0",
"transliteration": "latest"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^2.5.1"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.7",
"@strapi/utils": "^4.0.7",
"lodash": "^4.17.21",
"yup": "^0.32.9"
},
"strapi": {
"displayName": "Slugify",
"name": "slug-transliterate",
"description": "A plugin for Strapi Headless CMS that provides the ability to slugify fields by transliteration based on strapi-plugin-slugify.",
"kind": "plugin"
},
"engines": {
"node": ">=12.x.x <=16.x.x",
"npm": ">=6.0.0"
},
"keywords": [
"strapi",
"strapi-plugin",
"plugin",
"strapi plugin",
"slug",
"slugify",
"transliterate"
],
"license": "MIT"
}