forked from TypeCellOS/BlockNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 974 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 974 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
40
{
"name": "@blocknote/dev-scripts",
"homepage": "https://github.com/TypeCellOS/BlockNote",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/TypeCellOS/BlockNote.git",
"directory": "packages/dev-scripts"
},
"license": "MPL-2.0",
"version": "0.45.0",
"description": "",
"type": "module",
"scripts": {
"gen": "pnpm run gen:examples && pnpm run gen:docs",
"gen:examples": "tsx examples/gen.ts",
"gen:docs": "tsx examples/genDocs.ts",
"build": "tsc",
"lint": "eslint examples --max-warnings 0"
},
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"eslint": "^8.57.1",
"glob": "^10.5.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tinyglobby": "0.2.12",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"eslintConfig": {
"extends": [
"../../.eslintrc.json"
]
},
"dependencies": {
"prettier": "3.5.3"
}
}