-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.85 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "strapi-ulid",
"version": "0.1.6",
"description": "This plugin adds support for ULID field type to Strapi as a Custom field.",
"keywords": [
"strapi",
"strapi-plugin",
"custom-fields",
"ulid"
],
"strapi": {
"name": "field-ulid",
"description": "This plugin adds support for ULID field type to Strapi as a Custom field.",
"kind": "plugin",
"displayName": "Field ULID"
},
"dependencies": {
"ulid": "^2.3.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@strapi/design-system": "^1.7.2",
"@strapi/helper-plugin": "^4.10.1",
"@strapi/icons": "^1.7.2",
"@strapi/typescript-utils": "^4.10.1",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/styled-components": "^5.1.26",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.2",
"styled-components": "^5.3.10",
"ts-jest": "^29.1.0",
"typescript": "5.0.4",
"@strapi/strapi": "^4.9.2"
},
"peerDependencies": {
"@strapi/strapi": "^4.9.2"
},
"homepage": "https://github.com/soranoo/strapi-ulid",
"readme": "https://github.com/soranoo/strapi-ulid#readme",
"author": {
"name": "Freeman",
"url": "https://github.com/soranoo"
},
"repository": {
"url": "https://github.com/soranoo/strapi-ulid",
"type": "git",
"directory": "."
},
"bugs": {
"url": "https://github.com/soranoo/strapi-ulid/issues"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"latest"
]
},
"engines": {
"node": ">=16.20.0 <=18.x.x",
"npm": ">=8.0.0"
},
"scripts": {
"develop": "tsc -p tsconfig.server.json -w",
"build": "tsc -p tsconfig.server.json",
"test": "jest"
},
"license": "MIT"
}