-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.82 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.82 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
{
"name": "@portabletext/toolkit",
"version": "5.0.2",
"description": "Toolkit of handy utility functions for dealing with Portable Text",
"keywords": [
"cms",
"content",
"headless",
"portable-text-toolkit",
"realtime",
"sanity"
],
"homepage": "https://github.com/portabletext/toolkit#readme",
"bugs": {
"url": "https://github.com/portabletext/toolkit/issues"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/portabletext/toolkit.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
}
},
"scripts": {
"build": "tsdown",
"coverage": "vitest run --coverage",
"docs:build": "typedoc",
"format": "oxfmt .",
"lint": "oxlint --type-aware --type-check --deny-warnings --report-unused-disable-directives",
"prepublishOnly": "pnpm build",
"release": "changeset publish",
"test": "vitest"
},
"dependencies": {
"@portabletext/types": "^4.0.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@sanity/tsconfig": "^2.1.0",
"@sanity/tsdown-config": "^0.5.8",
"@types/node": "^24.11.0",
"@vitest/coverage-v8": "^4.0.18",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"tsdown": "^0.20.3",
"typedoc": "^0.28.17",
"typescript": "5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.19 <22 || >=22.12"
},
"packageManager": "pnpm@10.30.3"
}