-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.8 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
{
"name": "op-blocknote-extensions",
"private": true,
"version": "0.0.24",
"type": "module",
"module": "./dist/op-blocknote-extensions.es.js",
"types": "./dist/index.d.ts",
"main": "./dist/op-blocknote-extensions.cjs.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/op-blocknote-extensions.es.js",
"require": "./dist/op-blocknote-extensions.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc -b tsconfig.lib.json",
"lint": "eslint .",
"test": "npm run test:unit && npm run test:browser",
"test:unit": "vitest run",
"test:browser": "vitest run --config vitest.browser.config.ts",
"coverage": "vitest run --coverage",
"preview": "vite preview"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@mantine/core": "^8.3.6",
"@mantine/hooks": "^8.3.5",
"@mantine/utils": "^6.0.22",
"@types/node": "^24.9.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/styled-components": "^5.1.35",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.38.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.4.0",
"msw": "^2.12.10",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.46.2",
"vite": "^7.1.12",
"vitest": "^4.0.18",
"vitest-browser-react": "^2.0.5"
},
"dependencies": {
"@blocknote/core": "^0.44.2",
"@blocknote/mantine": "^0.44.2",
"@blocknote/react": "^0.44.2",
"@primer/octicons-react": "^19.20.0",
"i18next": "^25.6.3",
"react-i18next": "^16.3.5",
"styled-components": "^6.1.19"
}
}