-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.44 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
80
81
82
{
"name": "@sarv-in/document-editor-react",
"version": "1.0.0",
"description": "React component for SarvOffice Document Server",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Sarv/sarv-document-editor-react/issues",
"email": "support@sarv.com"
},
"homepage": "https://sarv.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Sarv/sarv-document-editor-react"
},
"author": "Sarv <support@sarv.com> (https://sarv.com)",
"maintainers": [
"Sarv <support@sarv.com> (https://sarv.com)"
],
"scripts": {
"rollup": "rollup -c --bundleConfigAsCjs",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"lodash": "4.17.21"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.1",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/addon-onboarding": "^8.6.12",
"@storybook/addon-webpack5-compiler-swc": "^2.1.0",
"@storybook/blocks": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/react-webpack5": "^8.6.12",
"@storybook/test": "^8.6.12",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/react": "^19.1.2",
"babel-jest": "^29.7.0",
"babel-loader": "^10.0.0",
"jest-environment-jsdom": "^29.7.0",
"lefthook": "^1.11.16",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rollup": "^4.40.1",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^8.6.12",
"ts-jest": "^29.3.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "^16.9.0 || ^17 || ^18 || ^19",
"react-dom": "^16.9.0 || ^17 || ^18 || ^19"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"universal": "dist/umd/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"keywords": [
"sarvoffice",
"sarv"
]
}