-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.55 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.55 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
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "sanity-plugin-iconify",
"version": "3.0.0",
"description": "Icon picker based on Iconify",
"keywords": [
"sanity",
"sanity-plugin"
],
"homepage": "https://github.com/waspeer/sanity-plugin-iconify#readme",
"bugs": {
"url": "https://github.com/waspeer/sanity-plugin-iconify/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/waspeer/sanity-plugin-iconify.git"
},
"license": "MIT",
"author": "Wannes Salomé <mail@wannessalome.nl>",
"sideEffects": true,
"type": "module",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"sanity.json",
"src",
"v2-incompatible.js"
],
"scripts": {
"build": "run-s build:clean build:verify build:bundle build:check",
"build:bundle": "pkg-utils build --strict",
"build:check": "pkg-utils --strict",
"build:clean": "rimraf dist",
"build:verify": "plugin-kit verify-package --silent",
"dev": "vite dev --config dev/vite.config.ts",
"format": "prettier --write --cache --ignore-unknown .",
"generate-types": "node src/lib/generate-types",
"lint": "eslint .",
"release": "release-it",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:setup": "tsx playwright/auth-setup.ts",
"test:e2e:ui": "playwright test --ui",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"watch": "pkg-utils watch --strict"
},
"browserslist": "extends @sanity/browserslist-config",
"dependencies": {
"@iconify/react": "^6.0.2",
"@iconify/utils": "^3.1.0",
"@sanity/icons": "^3.7.4",
"@sanity/incompatible-plugin": "^1.0.5",
"@sanity/ui": "^3.1.3",
"@tanstack/react-query": "^5.89.0",
"change-case": "^5.4.4",
"downshift": "^9.0.13",
"ts-pattern": "^5.9.0",
"use-debounce": "^10.0.6"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@iconify/json": "^2.2.420",
"@iconify/types": "^2.0.0",
"@playwright/test": "^1.58.2",
"@release-it/conventional-changelog": "^10.0.4",
"@sanity/pkg-utils": "^10.2.3",
"@sanity/plugin-kit": "^4.0.20",
"@tanstack/eslint-plugin-query": "^5.89.0",
"@tanstack/react-query-devtools": "^5.89.0",
"@types/react": "^19.2.7",
"@types/styled-components": "^5.1.36",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/ui": "^4.1.0",
"@waspeer/config": "^2.4.5",
"eslint": "9.39.2",
"lefthook": "^2.0.12",
"npm-run-all2": "^8.0.4",
"prettier": "^3.7.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-is": "^19.2.3",
"release-it": "^19.1.0",
"rimraf": "^6.1.2",
"sanity": "^5.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.1.0"
},
"peerDependencies": {
"react": "^19.2",
"sanity": "^5.0.0-0",
"styled-components": "^6"
},
"packageManager": "pnpm@10.17.0",
"engines": {
"node": ">=20.19"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook"
],
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"eslint": "^9",
"micromatch@<4.0.8": ">=4.0.8",
"prismjs@<1.30.0": ">=1.30.0"
}
},
"sanityPlugin": {
"verifyPackage": {
"scripts": false,
"eslintImports": false,
"nodeEngine": false
}
}
}