-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
79 lines (79 loc) · 2.07 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
{
"name": "@sanity/vercel-protection-bypass",
"version": "1.0.1",
"homepage": "https://github.com/sanity-io/visual-editing/tree/main/packages/vercel-protection-bypass#readme",
"bugs": {
"url": "https://github.com/sanity-io/visual-editing/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sanity-io/visual-editing.git",
"directory": "packages/vercel-protection-bypass"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"sideEffects": false,
"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",
"src",
"!src/**/*.test.ts",
"!src/**/*.test-d.ts",
"CHANGELOG.md"
],
"scripts": {
"build": "pkg build --strict --check --clean",
"dev": "pkg build --strict",
"lint": "eslint --cache .",
"prepack": "turbo run build",
"test": "vitest --pass-with-no-tests --typecheck"
},
"browserslist": "extends @sanity/browserslist-config",
"prettier": "@repo/prettier-config",
"eslintConfig": {
"extends": [
"@repo/eslint-config"
],
"root": true
},
"dependencies": {
"@sanity/icons": "^3.5.7",
"@sanity/preview-url-secret": "workspace:^",
"@sanity/ui": "^2.11.2",
"react-compiler-runtime": "19.0.0-beta-55955c9-20241229"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/package.config": "workspace:*",
"@repo/prettier-config": "workspace:*",
"@sanity/pkg-utils": "6.13.4",
"babel-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"eslint": "^8.57.1",
"react": "^19.0.0",
"sanity": "3.70.0",
"typescript": "5.7.3",
"vitest": "^3.0.2"
},
"peerDependencies": {
"react": "^18.3 || ^19",
"sanity": "^3.70.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}