-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.05 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
{
"name": "@sanity/incompatible-plugin",
"version": "1.0.4",
"description": "Display an error dialog in Sanity Studio v2 when a v3 plugin has been installed.",
"keywords": [
"sanity",
"sanity-plugin"
],
"homepage": "https://github.com/sanity-io/incompatible-plugin#readme",
"bugs": {
"url": "https://github.com/sanity-io/incompatible-plugin/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:sanity-io/incompatible-plugin.git"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"main": "./lib/index.js",
"source": "./src/index.tsx",
"types": "./lib/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf lib",
"compile": "tsc --noEmit",
"format": "prettier --ignore-path .gitignore -w .",
"lint": "eslint .",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@sanity/icons": "^1.3",
"react-copy-to-clipboard": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@sanity/semantic-release-preset": "^4.0.0",
"@sanity/ui": "^0.37.22",
"@types/react": "^18.0.10",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "5.0.4",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"react": "^16.9 || ^17 || ^18",
"react-dom": "^16.9 || ^17 || ^18"
}
}