-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.65 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.65 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"version": "2.0.5",
"keywords": [
"strapi select",
"strapi multi selects",
"strapi input",
"strapi select fetch options"
],
"type": "commonjs",
"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",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"test:ts:back": "run -T tsc -p server/tsconfig.json"
},
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.12",
"@strapi/icons": "^2.0.0-rc.12",
"react-intl": "^6.8.4",
"jsonpath": "^1.1.1",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@strapi/strapi": "^5.2.0",
"@strapi/sdk-plugin": "^5.2.7",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"styled-components": "^6.1.13",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@strapi/typescript-utils": "^5.2.0",
"typescript": "^5.6.3",
"@types/jsonpath": "^0.2.4",
"@types/lodash-es": "^4.17.12",
"prettier-plugin-organize-imports": "^3.2.4"
},
"peerDependencies": {
"@strapi/strapi": "^5.2.0",
"@strapi/sdk-plugin": "^5.2.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"styled-components": "^6.1.13"
},
"strapi": {
"name": "remote-select",
"description": "A powerful tool that adds select type inputs to your strapi with the ability to dynamically load options via API. Supports static and searchable endpoints—autocomplete.",
"kind": "plugin",
"displayName": "Remote select"
},
"name": "strapi-plugin-remote-select",
"description": "A powerful tool that adds select type inputs to your strapi with the ability to dynamically load options via API. Supports static and searchable endpoints—autocomplete.",
"license": "MIT",
"author": {
"name": "Dmytro Nazarenko"
},
"repository": {
"type": "git",
"url": "https://github.com/dmitriy-nz/strapi-plugin-remote-select.git"
},
"engines": {
"node": ">=18.0.0 <=20.x.x"
}
}