-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.86 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@portabletext/plugin-character-pair-decorator",
"version": "8.0.34",
"description": "Automatically match a pair of characters and decorate the text in between",
"keywords": [
"behaviors",
"decorator",
"pair",
"plugin",
"portabletext"
],
"homepage": "https://portabletext.org",
"bugs": {
"url": "https://github.com/portabletext/editor/issues"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"repository": {
"type": "git",
"url": "https://github.com/portabletext/editor.git",
"directory": "packages/plugin-character-pair-decorator"
},
"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:react-compiler": "eslint .",
"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:browser:chromium": "vitest run --project \"browser (chromium)\"",
"test:browser:chromium:watch": "vitest watch --project \"browser (chromium)\"",
"test:browser:firefox": "vitest run --project \"browser (firefox)\"",
"test:browser:firefox:watch": "vitest watch --project \"browser (firefox)\"",
"test:browser:webkit": "vitest run --project \"browser (webkit)\"",
"test:browser:webkit:watch": "vitest watch --project \"browser (webkit)\"",
"test:unit": "vitest run --project unit",
"test:unit:watch": "vitest watch --project unit"
},
"dependencies": {
"@portabletext/plugin-input-rule": "workspace:^"
},
"devDependencies": {
"@portabletext/editor": "workspace:^",
"@portabletext/schema": "workspace:*",
"@portabletext/test": "workspace:*",
"@sanity/pkg-utils": "catalog:tooling",
"@sanity/tsconfig": "catalog:tooling",
"@types/react": "catalog:tooling",
"@vitejs/plugin-react": "catalog:tooling",
"@vitest/browser": "catalog:tooling",
"@vitest/browser-playwright": "catalog:tooling",
"babel-plugin-react-compiler": "catalog:tooling",
"eslint": "catalog:tooling",
"eslint-plugin-react-hooks": "catalog:tooling",
"racejar": "workspace:*",
"react": "catalog:",
"typescript": "catalog:tooling",
"typescript-eslint": "catalog:tooling",
"vitest": "catalog:tooling"
},
"peerDependencies": {
"@portabletext/editor": "workspace:^",
"react": "^19.2"
},
"engines": {
"node": ">=20.19 <22 || >=22.12"
}
}