-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.67 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
{
"name": "@portabletext/sanity-bridge",
"version": "3.2.2",
"description": "Convert a Sanity Schema to a Portable Text Schema",
"keywords": [
"portable-text",
"sanity"
],
"homepage": "https://www.portabletext.org/",
"bugs": {
"url": "https://github.com/portabletext/editor/issues"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/portabletext/editor.git",
"directory": "packages/sanity-bridge"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"source": "./src/index.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
}
},
"scripts": {
"build": "pkg-utils build --strict --check --clean",
"check:lint": "biome lint .",
"check:types": "tsc",
"check:types:watch": "tsc --watch",
"clean": "del .turbo && del lib && del node_modules",
"dev": "pkg-utils watch",
"lint:fix": "biome lint --write .",
"prepublishOnly": "turbo run build",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch"
},
"dependencies": {
"@portabletext/schema": "workspace:^",
"@sanity/schema": "catalog:",
"@sanity/types": "catalog:"
},
"devDependencies": {
"@sanity/pkg-utils": "catalog:tooling",
"@sanity/tsconfig": "catalog:tooling",
"typescript": "catalog:tooling",
"vitest": "catalog:tooling"
},
"engines": {
"node": ">=20.19 <22 || >=22.12"
}
}