-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
105 lines (105 loc) · 2.89 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "strapi-advanced-uuid",
"version": "2.0.1",
"description": "UUID field type support to Strapi with customizations",
"keywords": [
"strapi",
"strapi plugin",
"custom fields",
"uuid",
"regex"
],
"homepage": "https://github.com/Dulajdeshan/strapi-advanced-uuid",
"readme": "https://github.com/Dulajdeshan/strapi-advanced-uuid#readme",
"bugs": {
"url": "https://github.com/Dulajdeshan/strapi-advanced-uuid/issues",
"email": "[email protected]"
},
"repository": {
"url": "git+https://github.com/Dulajdeshan/strapi-advanced-uuid.git",
"type": "git",
"directory": "."
},
"license": "MIT",
"author": {
"name": "Dulaj Ariyaratne",
"email": "[email protected]",
"url": "https://github.com/dulajdeshan"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"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",
"test": "jest",
"test:ts:back": "run -T tsc -p server/tsconfig.json",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"verify": "strapi-plugin verify",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link"
},
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.11",
"@strapi/icons": "^2.0.0-rc.11",
"react-intl": "^6.8.0",
"regex-randstr": "^0.0.6",
"uuid": "^11.0.2"
},
"devDependencies": {
"@strapi/sdk-plugin": "^5.2.7",
"@strapi/strapi": "^5.1.0",
"@strapi/typescript-utils": "^5.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"styled-components": "^6.1.13",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.2.7",
"@strapi/strapi": "^5.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"styled-components": "^6.1.13"
},
"strapi": {
"kind": "plugin",
"name": "strapi-advanced-uuid",
"displayName": "Strapi Advanced UUID",
"description": "UUID field type support to Strapi with customizations"
},
"publishConfig": {
"access": "public"
}
}