-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.66 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.66 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@ttab/textbit-plugins",
"description": "Base package of common plugins for textbit",
"version": "1.6.2",
"license": "MIT",
"author": {
"name": "Danne Lundqvist"
},
"type": "module",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/ttab"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ttab/textbit-plugins.git"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.js"
}
}
},
"scripts": {
"dev": "vite",
"test": "vitest run",
"build": "tsc --project ./tsconfig.build.json && vite build",
"lint": "npm run tsc && eslint . --report-unused-disable-directives --max-warnings 0",
"tsc": "tsc --noEmit",
"preview": "vite preview",
"preversion": "npm test && npm run build",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"@slate-yjs/core": "^1.0.2",
"@slate-yjs/react": "^1.1.0",
"lucide-react": ">=0.475.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"slate": "^0.124.1",
"slate-react": "^0.124.0",
"yjs": "^13.6.26"
},
"devDependencies": {
"@slate-yjs/core": "^1.0.2",
"@slate-yjs/react": "^1.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^25.6.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@vitejs/plugin-react-swc": "^4.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.39.0",
"eslint-config-love": "^133.0.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"glob": "^11.0.1",
"happy-dom": "^20.9.0",
"lucide-react": "^0.555.0",
"postcss": "^8.5.14",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"slate": "^0.124.1",
"slate-history": "^0.113.1",
"slate-react": "^0.124.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-lib-inject-css": "^2.2.1",
"vitest": "^4.1.5",
"yjs": "^13.6.26"
},
"dependencies": {
"@ttab/textbit": "^1.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.0.2"
}
}