-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.6 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.6 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
{
"version": "1.0.0",
"name": "@fresh.codes/strapi-plugin-link-field",
"description": "A custom field that provides link details to a resource, a file, or a plain text url.",
"license": "MIT",
"author": "Fresh Codes <hello@fresh.codes>",
"keywords": [
"strapi",
"plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/freshcodes/strapi-plugin-link-field.git"
},
"bugs": {
"url": "https://github.com/freshcodes/strapi-plugin-link-field/issues"
},
"homepage": "https://github.com/freshcodes/strapi-plugin-link-field#readme",
"type": "commonjs",
"strapi": {
"kind": "plugin",
"name": "link-field",
"displayName": "Link Field",
"description": "A custom field that provides link details to a resource, a file, or a plain text url."
},
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write --ignore-unknown .",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.26",
"@strapi/icons": "^2.0.0-rc.26",
"react-intl": "^7.1.11"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@strapi/sdk-plugin": "^5.3.2",
"@strapi/strapi": "^5.15.1",
"@strapi/typescript-utils": "^5.15.1",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"styled-components": "^6.1.19",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.3.2",
"@strapi/strapi": "^5.15.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"styled-components": "^6.1.19"
},
"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"
]
}