-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.56 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
{
"name": "@sanity/language-filter",
"version": "4.0.4",
"description": "A Sanity plugin that supports filtering localized fields by language",
"homepage": "https://github.com/sanity-io/language-filter#readme",
"bugs": {
"url": "https://github.com/sanity-io/language-filter/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:sanity-io/language-filter.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"source": "./src/index.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"source": "./src/index.ts",
"types": "./lib/index.d.ts",
"files": [
"src",
"lib",
"v2-incompatible.js",
"sanity.json"
],
"scripts": {
"prebuild": "npm run clean",
"build": "pkg build --strict && pkg check --strict",
"clean": "rimraf lib",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"test": "jest",
"watch": "pkg-utils watch"
},
"dependencies": {
"@sanity/icons": "^3.5.3",
"@sanity/incompatible-plugin": "^1.0.5",
"@sanity/ui": "^2.10.11",
"@sanity/util": "^3.67.1"
},
"devDependencies": {
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@sanity/pkg-utils": "^6.1.0",
"@sanity/plugin-kit": "^3.1.10",
"@sanity/semantic-release-preset": "^4.1.7",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-sanity": "^7.1.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.14",
"react": "^18.3.1",
"rimraf": "^4.4.1",
"sanity": "^3.67.1",
"styled-components": "^6.1.8",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4"
},
"peerDependencies": {
"react": "^18 || ^19",
"sanity": "^3.36.4",
"styled-components": "^6.1"
},
"engines": {
"node": ">=14"
},
"sanityPlugin": {
"verifyPackage": {
"babelConfig": false,
"tsconfig": false
}
}
}