-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.58 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": "react-text-annotate-blend",
"version": "1.2.0",
"description": "React component for interactive blended text marking",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smhaley/react-text-annotate-blend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smhaley/react-text-annotate-blend/issues"
},
"homepage": "https://smhaley.github.io/react-text-annotate-blend",
"devDependencies": {
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/lodash.sortby": "^4.7.6",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.1",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"jest": "^26.6.3",
"lodash.sortby": "^4.7.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.40.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"files": [
"dist"
],
"dependencies": {
"lodash.sortby": "^4.7.0"
}
}