-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.94 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
{
"name": "@codersteps/markdowner",
"version": "1.0.5",
"description": "A block based richtext editor for developers",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"files": [
"./dist"
],
"scripts": {
"dev": "NODE_ENV=development tsup --watch",
"build": "NODE_ENV=production tsup",
"lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore --fix",
"format": "prettier --write --parser typescript 'src/**/*.{ts,tsx}'"
},
"author": "Abdessamad El Hamdany",
"license": "MIT",
"keywords": [
"block-based",
"block-editor",
"rich-text-editor",
"developer-blogging"
],
"repository": {
"type": "git",
"url": "https://github.com/codersteps/markdowner"
},
"devDependencies": {
"@swc/core": "^1.10.1",
"@types/autosize": "^4.0.3",
"@types/cheerio": "^0.22.35",
"@types/node": "22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"concurrently": "^9.1.0",
"esbuild-sass-plugin": "^3.3.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.11.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.16",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.1"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"autosize": "^6.0.1",
"cheerio": "^1.0.0",
"cropperjs": "^1.6.2",
"highlight.js": "^11.11.1",
"immer": "^10.1.1",
"marked": "^15.0.4",
"use-immer": "^0.11.0"
}
}