-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.83 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
{
"name": "@sanity/studio-secrets",
"version": "3.0.1",
"description": "React hooks and UI for reading and managing secrets in a Sanity Studio. This is a good pattern for keeping configuration secret. Instead of using environment variables which would be bundled with the Studio source (it is an SPA), we store secret information in a document in the dataset. This document will not be readable to externals even in a public dataset. With custom access controls you can also specify which users can read the configuration in your Studio.",
"homepage": "https://github.com/sanity-io/sanity-studio-secrets#readme",
"bugs": {
"url": "https://github.com/sanity-io/sanity-studio-secrets/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:sanity-io/sanity-studio-secrets.git"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"sideEffects": false,
"exports": {
".": {
"source": "./src/index.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"types": "./lib/index.d.ts",
"files": [
"src",
"lib",
"v2-incompatible.js",
"sanity.json"
],
"scripts": {
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"test": "echo 'no tests'",
"watch": "pkg-utils watch --strict"
},
"browserslist": "extends @sanity/browserslist-config",
"prettier": "@sanity/prettier-config",
"dependencies": {
"@sanity/incompatible-plugin": "^1.0.5",
"@sanity/ui": "^2.10.10"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@sanity/client": "^6.24.3",
"@sanity/pkg-utils": "6.13.4",
"@sanity/plugin-kit": "^4.0.19",
"@sanity/prettier-config": "1.0.3",
"@sanity/semantic-release-preset": "^4.1.8",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-sanity": "^7.1.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sanity": "^3.69.0",
"semantic-release": "^23.1.1",
"typescript": "5.7.3"
},
"peerDependencies": {
"react": "^18.2.0 || ^19",
"sanity": "^3.36.4",
"styled-components": "^6.1"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}