-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.7 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
{
"name": "@portabletext/types",
"version": "4.0.2",
"description": "Shared TypeScript definitions for core Portable Text data structures",
"keywords": [
"portable-text"
],
"homepage": "https://github.com/portabletext/types#readme",
"bugs": {
"url": "https://github.com/portabletext/types/issues"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/portabletext/types.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",
"docs:build": "typedoc",
"format": "oxfmt .",
"lint": "oxlint --type-aware --type-check --deny-warnings --report-unused-disable-directives",
"node:test": "node test/test.js",
"prepublishOnly": "pnpm run build && pnpm run test",
"release": "changeset publish",
"pretest": "pnpm run build",
"test": "pnpm run node:test"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@sanity/tsconfig": "^2.1.0",
"@sanity/tsdown-config": "^0.5.8",
"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"
},
"lint-staged": {
"*": [
"oxfmt"
]
},
"engines": {
"node": ">=20.19 <22 || >=22.12"
},
"packageManager": "pnpm@10.30.3"
}