-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.29 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.29 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "strapi-plugin-imgix",
"version": "2.0.0",
"description": "Strapi - imgix Integration Plugin",
"strapi": {
"name": "imgix",
"description": "Unleash the Potential of Your Media with AI | An imgix integration for any kind of Strapi Media Library provider",
"kind": "plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/imgix/strapi-plugin-imgix"
},
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.11",
"@strapi/icons": "^2.0.0-rc.11",
"@strapi/utils": "^5.0.0",
"@tanstack/react-query": "^5.40.0",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react-intl": "^6.6.8",
"zod": "^3.0.0"
},
"devDependencies": {
"@strapi/strapi": "^5.0.0",
"@strapi/types": "^5.0.0",
"@strapi/sdk-plugin": "^5.2.6",
"@strapi/typescript-utils": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/lodash": "^4.17.4",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.34",
"husky": "7.0.4",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-styled-components": "^7.1.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"react-query": "3.39.3",
"styled-components": "^6.1.13",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.1",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.2.6",
"@strapi/strapi": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13"
},
"author": {
"name": "imgix",
"email": "sdk@imgix.com",
"url": "https://imgix.com"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn test:unit"
}
},
"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": {
"prepare": "husky install",
"publish:latest": "npm publish --tag latest",
"publish:beta": "npm publish --tag beta",
"build": "yarn clean && strapi-plugin build",
"clean": "rm -rf dist",
"lint": "prettier --check .",
"format": "prettier --write .",
"test:ts:back": "run -T tsc -p server/tsconfig.json",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"test:unit": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:unit:ci": "CI=true jest --ci --runInBand --verbose --coverage",
"verify": "strapi-plugin verify",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link"
},
"keywords": [
"strapi",
"plugin",
"imgix",
"upload"
],
"license": "MIT"
}