-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.78 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.78 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
{
"name": "gt-sanity",
"version": "1.1.20",
"description": "General Translation integration with Sanity",
"keywords": [
"sanity",
"sanity-plugin",
"translation",
"internationalization",
"localization",
"i18n",
"l10n"
],
"repository": {
"type": "git",
"url": "git+https://github.com/generaltranslation/gt.git"
},
"license": "FSL-1.1-ALv2",
"bugs": {
"url": "https://github.com/generaltranslation/gt/issues"
},
"homepage": "https://generaltranslation.com/",
"author": "General Translation, Inc.",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"sanity.json",
"src",
"v2-incompatible.js"
],
"scripts": {
"release": "pnpm run build && pnpm publish --access public",
"release:alpha": "pnpm run build && pnpm publish --access public --tag alpha",
"release:beta": "pnpm run build && pnpm publish --access public --tag beta",
"release:latest": "pnpm run build && pnpm publish --access public --tag latest",
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm run build",
"test": "vitest run",
"watch": "pkg-utils watch --strict"
},
"dependencies": {
"@portabletext/block-tools": "^3.5.5",
"@portabletext/to-html": "^2.0.14",
"@sanity/icons": "^3.7.4",
"@sanity/incompatible-plugin": "^1.0.5",
"@sanity/mutator": "^3.98.1",
"@sanity/schema": "^3.98.1",
"@sanity/ui": "^2.16.4",
"@sanity/util": "^3.98.1",
"generaltranslation": "workspace:*",
"jsonpath-plus": "^10.3.0",
"jsonpointer": "^5.0.1",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@portabletext/types": "^2.0.15",
"@sanity/pkg-utils": "^8.1.6",
"@sanity/plugin-kit": "^4.0.19",
"@types/lodash.merge": "^4.6.9",
"@types/react": "^19.2.7",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint-config-sanity": "^7.1.4",
"jsdom": "^26.1.0",
"just-clone": "^6.2.0",
"prettier-plugin-packagejson": "^2.5.19",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"sanity": "^4.6.1",
"styled-components": "^6.1.19"
},
"peerDependencies": {
"react": ">=18.0.0",
"sanity": ">=4.0.0"
},
"sanityPlugin": {
"verifyPackage": {
"eslintImports": false,
"packageName": false
}
},
"engines": {
"node": ">=18"
}
}