-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "@taikai/html-editor",
"version": "3.0.0-beta.5",
"description": "TAIKAI HTML Editor",
"author": "taikai",
"type": "module",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/taikai/html-editor.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/",
"build": "vite build",
"start": "vite build --watch",
"prepare": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": ">=16"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@storybook/react-vite": "^10.2.10",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"storybook": "^10.2.10",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"files": [
"dist"
],
"dependencies": {
"postcss": "^8.5.6",
"react-froala-wysiwyg": "4.1.0"
},
"np": {
"tests": false
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}