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
38 lines (38 loc) · 942 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 942 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
{
"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.27.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": "^18.0.25",
"@types/react-dom": "^18.0.9",
"eslint": "^8.10.0",
"glob": "^10.3.10",
"prettier": "^2.7.1",
"react": "^18",
"react-dom": "^18",
"tinyglobby": "0.2.12",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"eslintConfig": {
"extends": [
"../../.eslintrc.js"
]
}
}