-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.4 KB
/
package.json
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
{
"name": "@ttab/textbit-plugins",
"description": "Base package of common plugins for textbit",
"version": "0.4.4",
"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",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.js"
}
}
},
"scripts": {
"dev": "vite",
"test": "jest -c ./jest.config.ts",
"build": "tsc --project ./tsconfig.build.json && vite build",
"lint": "npm run tsc && eslint . --ext ts,tsx --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": {
"@ttab/textbit": "^0.20.0",
"lucide-react": "^0.454.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"slate": "^0.110.2",
"slate-react": "^0.111.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@ttab/textbit": "^0.20.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.9.0",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-love": "^84.1.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"glob": "^11.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lucide-react": "^0.454.0",
"postcss": "^8.4.47",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"slate": "^0.110.2",
"slate-react": "^0.111.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.3.1",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-lib-inject-css": "^2.1.1"
}
}