-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 998 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 998 Bytes
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
{
"name": "@defensestation/blocknote-subscript-superscript",
"version": "0.1.0",
"description": "Subscript and superscript styles plus React toolbar buttons for BlockNote.",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"peerDependencies": {
"@blocknote/core": ">=0.51.0 <1.0.0",
"@blocknote/react": ">=0.51.0 <1.0.0",
"react": ">=18.0.0 <20.0.0"
},
"devDependencies": {
"@blocknote/core": "^0.51.4",
"@blocknote/react": "^0.51.4",
"@types/react": "^19.0.0",
"react": "^19.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"prepack": "npm run build",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/defensestation/blocknote-subscript-superscript.git"
}
}