-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.31 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
{
"type": "module",
"version": "0.3.0",
"description": "medium like react tapable editor",
"license": "MIT",
"main": "dist/react-tapable-editor.cjs",
"module": "dist/react-tapable-editor.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-tapable-editor.mjs",
"require": "./dist/react-tapable-editor.cjs"
},
"./style.css": "./dist/react-tapable-editor.css"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "vite --host 0.0.0.0",
"build": "rm -rf dist && vite build && tsc -p tsconfig.build.json --emitDeclarationOnly",
"test": "npm run build && npm run test:e2e",
"test:e2e": "NO_PROXY=localhost,127.0.0.1,::1 HTTP_PROXY= HTTPS_PROXY= ALL_PROXY= http_proxy= https_proxy= all_proxy= playwright test",
"release:check": "npm test && npm run docs:build && npm run docs:wiki:build",
"prepublishOnly": "npm run release:check",
"prepare": "npm run build",
"docs:dev": "vitepress dev docs --port 5174",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs --port 4174",
"docs:wiki:dev": "vitepress dev",
"docs:wiki:build": "vitepress build",
"docs:wiki:preview": "vitepress preview"
},
"repository": {
"type": "git",
"url": "https://github.com/ryuever/react-tapable-editor"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-tapable-editor",
"author": "youchao liu",
"dependencies": {
"@lexical/code": "^0.44.0",
"@lexical/link": "^0.44.0",
"@lexical/list": "^0.44.0",
"@lexical/markdown": "^0.44.0",
"@lexical/react": "^0.44.0",
"@lexical/rich-text": "^0.44.0",
"@lexical/selection": "^0.44.0",
"lexical": "^0.44.0",
"yjs": "^13.6.27"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tslib": "^2.0.0",
"typescript": "^5.7.3",
"vite": "^5.4.11",
"vitepress": "^1.6.3",
"vitepress-plugin-mermaid": "^2.0.17"
}
}