-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "@bipboys/rich-slate-editor",
"version": "0.0.25",
"description": "React rich-editor based on Slate and Baseweb frameworks",
"homepage": "https://github.com/bipboy/rich-slate-editor#readme",
"bugs": {
"url": "https://github.com/bipboy/rich-slate-editor/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bipboy/rich-slate-editor"
},
"license": "MIT",
"author": "Bipboys Dev Team",
"sideEffects": false,
"main": "./build/node/index.js",
"module": "./build/esm/index.js",
"types": "./types/index.d.ts",
"files": [
"build/",
"types/",
"!build/*.tsbuildinfo",
"!build/**/tests/",
"index.js"
],
"scripts": {
"build": "npm run build:clean && npm run build-esm && npm run build-node && npm run build:types",
"build-esm": "swc ./src -d build/esm -C module.type=es6",
"build-node": "swc ./src -d build/node -C module.type=commonjs",
"build:clean": "rimraf ./build && mkdir build",
"build:types": "tsc -p tsconfig.json",
"clean": "rimraf ./node_modules && npm run build:clean"
},
"dependencies": {
"baseui": "^12.2.0",
"deep-equal": "^2.2.1",
"is-hotkey": "^0.2.0",
"is-url": "^1.2.4",
"lodash": "^4.17.21",
"react-is": "^18.2.0",
"react-uid": "^2.3.2",
"slate": "0.94.0",
"slate-history": "0.93.0",
"slate-react": "0.94.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@bipboys/typescript-preset": "0.0.1",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.56",
"@types/is-hotkey": "^0.1.7",
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.3",
"@types/ramda": "^0.29.1",
"@types/react": "18.2.5",
"@types/react-dom": "18.2.3",
"@types/react-is": "^18.2.0",
"@types/styletron-engine-atomic": "^1.1.1",
"@types/styletron-react": "^5.0.3",
"@types/styletron-standard": "^2.0.2",
"cross-env": "^7.0.3",
"rimraf": "^5.0.0",
"styletron-react": "6.1.0",
"typescript": "4.9.5"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
}
}