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