-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
100 lines (100 loc) · 2.86 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
{
"name": "@sanity/document-internationalization",
"version": "3.1.0",
"description": "Create unique translations of a document based on its language, joined by a shared reference document.",
"keywords": [
"sanity",
"sanity-plugin"
],
"homepage": "https://github.com/sanity-io/document-internationalization#readme",
"bugs": {
"url": "https://github.com/sanity-io/document-internationalization/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:sanity-io/document-internationalization.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.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 && pkg-utils build --strict && pkg-utils --strict",
"clean": "rimraf dist",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepublishOnly": "run-s build",
"watch": "pkg-utils watch --strict",
"prepare": "husky install"
},
"dependencies": {
"@sanity/icons": "^2.11.7",
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/ui": "^2.1.0",
"@sanity/uuid": "^3.0.2",
"sanity-plugin-internationalized-array": "^2.0.0",
"sanity-plugin-utils": "^1.6.4"
},
"devDependencies": {
"@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/react": "^18.2.75",
"@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",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"npm-run-all2": "^5.0.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^4.4.1",
"sanity": "^3.40.0",
"semantic-release": "^23.0.7",
"typescript": "5.4.2"
},
"peerDependencies": {
"@sanity/mutator": "^3.40.0",
"@sanity/ui": "^2.1",
"react": "^18",
"react-dom": "^18",
"sanity": "^3.40.0",
"styled-components": "^6.1"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}