-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.26 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.26 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
{
"name": "@frontify/sanity-plugin-frontify",
"version": "1.0.0",
"description": "Connect your Frontify Digital Asset Management to your Studio schema as a custom field, letting users authenticate, browse, and select brand-approved assets with ease and serve them via CDN. Go further by optimizing and transforming rich media on the fly using our Media Processing API—boosting performance, enhancing brand experiences, and saving your team time and effort.",
"keywords": [
"sanity",
"sanity-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/Frontify/sanity-io-plugin.git"
},
"license": "MIT",
"author": "Frontify <developer@frontify.com>",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"sanity.json",
"src",
"v2-incompatible.js"
],
"scripts": {
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"watch": "pkg-utils watch --strict"
},
"dependencies": {
"@frontify/frontify-finder": "^3.0.1",
"@sanity/incompatible-plugin": "^1.0.5",
"@sanity/ui": "^3.0.0"
},
"devDependencies": {
"@sanity/pkg-utils": "^10.0.0",
"@sanity/plugin-kit": "^4.0.19",
"@types/react": "^19.1.8",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-config-sanity": "^7.1.4",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.18",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sanity": "^4.0.1",
"styled-components": "^6.1.19",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "^18 || ^19.1.0",
"sanity": "^3"
},
"engines": {
"node": ">=18"
}
}