-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 2.98 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@daniely/blocks",
"description": "Modular Blocks Editor",
"author": "Daniel Yogel",
"version": "0.4.2",
"license": "MIT",
"repository": "https://github.com/danielyogel/Blocks",
"main": "./dist/blocks.cjs.js",
"module": "./dist/blocks.es.js",
"exports": {
".": {
"import": "./dist/blocks.es.js",
"require": "./dist/blocks.cjs.js"
},
"./dist/style.css": "./dist/style.css"
},
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "concurrently --group --raw \"vite\" \"tsc --noEmit --watch\" \"npm run ladle\" \"npm run test\"",
"build": "vite build && npm run build:types",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"ladle": "npx ladle serve",
"ladle:build": "npx ladle build --out dist-ladle",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"engines": {
"node": ">=12"
},
"prettier": {
"useTabs": false,
"semi": true,
"tabWidth": 2,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"singleQuote": true,
"trailingComma": "none",
"jsxSingleQuote": true,
"printWidth": 150,
"arrowParens": "avoid"
},
"dependencies": {
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.1",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.6",
"@ladle/react": "^2.9.0",
"@tiptap/extension-bubble-menu": "^2.0.0-beta.61",
"@tiptap/extension-code-block-lowlight": "^2.0.0-beta.73",
"@tiptap/extension-heading": "^2.0.0-beta.29",
"@tiptap/extension-highlight": "^2.0.0-beta.35",
"@tiptap/extension-image": "^2.0.0-beta.30",
"@tiptap/extension-link": "^2.0.0-beta.43",
"@tiptap/extension-placeholder": "^2.0.0-beta.53",
"@tiptap/extension-text-align": "^2.0.0-beta.31",
"@tiptap/extension-underline": "^2.0.0-beta.25",
"@tiptap/react": "^2.0.0-beta.114",
"@tiptap/starter-kit": "^2.0.0-beta.190",
"ahooks": "^3.7.5",
"csstype": "^3.1.1",
"fp-ts": "^2.13.1",
"framer-motion": "^7.6.12",
"io-ts": "^2.2.20",
"jspdf": "^2.5.1",
"lodash": "^4.17.21",
"mobx": "^6.8.0",
"mobx-react-lite": "^3.4.0",
"nanoid": "^4.0.1",
"pdf-parse": "^1.1.1",
"tailwindcss": "^3.2.7",
"tsd": "^0.25.0",
"zod": "^3.20.6"
},
"devDependencies": {
"@types/lodash": "^4.14.190",
"@types/pdf-parse": "^1.1.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/ws": "^8.5.3",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"concurrently": "^7.6.0",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"ts-toolbelt": "9.6.0",
"tslib": "^2.5.0",
"type-fest": "^3.6.1",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"peerDependencies": {
"react": ">=16"
}
}