-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
111 lines (111 loc) · 3.3 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
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
{
"name": "sanity-plugin-icon-picker",
"version": "3.3.0",
"description": "An Icon Picker plugin for Sanity",
"keywords": [
"sanity",
"sanity-plugin",
"plugin",
"icon",
"custom input",
"sanity field"
],
"homepage": "https://github.com/christopherafbjur/sanity-plugin-icon-picker#readme",
"bugs": {
"url": "https://github.com/christopherafbjur/sanity-plugin-icon-picker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christopherafbjur/sanity-plugin-icon-picker.git"
},
"license": "MIT",
"author": "Christopher Af Bjur",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"require": "./dist/index.js",
"import": "./dist/index.esm.js",
"default": "./dist/index.esm.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist",
"sanity.json",
"src",
"v2-incompatible.js"
],
"scripts": {
"build": "run-s clean && plugin-kit verify-package --silent && pkg-utils build --strict && pkg-utils --strict",
"clean": "rimraf dist",
"lint": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write --cache --ignore-unknown .",
"format:check": "prettier --check .",
"link-watch": "plugin-kit link-watch",
"check-types": "tsc --noEmit",
"prepublishOnly": "run-s build",
"prepare": "husky install",
"watch": "pkg-utils watch --strict",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@sanity/incompatible-plugin": "^1.0.4",
"decamelize": "3.2.0",
"framework7-icons": "^5.0.5",
"react-icons": "^4.8.0",
"react-virtualized-auto-sizer": "^1.0.5",
"react-window": "^1.8.6",
"sanity": "^3"
},
"devDependencies": {
"@sanity/pkg-utils": "^2.3.3",
"@sanity/plugin-kit": "^3.1.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.28",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-sanity": "^6.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-packagejson": "^2.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^4.1.3",
"styled-components": "^5.3.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^18",
"sanity": "^3"
},
"engines": {
"node": ">=14"
},
"sanityExchangeUrl": "https://www.sanity.io/plugins/icon-picker"
}