-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.93 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.93 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
{
"name": "testomatio-editor-blocks",
"version": "0.4.59",
"description": "Custom BlockNote schema, markdown conversion helpers, and UI for Testomatio-style test cases and steps.",
"type": "module",
"main": "./package/index.js",
"module": "./package/index.js",
"types": "./package/index.d.ts",
"exports": {
".": {
"types": "./package/index.d.ts",
"import": "./package/index.js"
},
"./snippets": {
"types": "./package/snippets.d.ts",
"import": "./package/snippets.js"
},
"./styles.css": "./package/styles.css",
"./package.json": "./package.json"
},
"files": [
"package",
"src",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && npm run build:package && vite build",
"build:package": "node scripts/build-package.mjs",
"lint": "eslint .",
"test": "vitest",
"test:run": "vitest run --reporter=verbose",
"preview": "vite preview"
},
"keywords": [
"blocknote",
"editor",
"markdown",
"testcases",
"test-automation"
],
"repository": {
"type": "git",
"url": "https://github.com/testomatio/block-editor"
},
"peerDependencies": {
"@blocknote/core": "^0.31.3",
"@blocknote/react": "^0.31.3",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@blocknote/core": "^0.31.3",
"@blocknote/mantine": "^0.31.3",
"@blocknote/react": "^0.31.3",
"@eslint/js": "^9.36.0",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7",
"vitest": "^3.2.4"
},
"dependencies": {
"overtype": "^2.0.6"
}
}