forked from linkstrifer/react-rough-notation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "react-rough-notation",
"version": "1.0.5",
"main": "./dist/main.js",
"module": "./dist/module.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"publish:beta": "npm run build && npm publish --tag beta",
"publish": "npm run build && npm publish"
},
"dependencies": {
"rough-notation": "^0.5.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^7.4.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.3"
},
"files": [
"dist"
],
"description": "This is a React wrapper for [RoughNotation](https://roughnotation.com/), a small JavaScript library to create and animate annotations on a web page.",
"repository": {
"type": "git",
"url": "git+https://github.com/linkstrifer/react-rough-notation.git"
},
"keywords": [
"annotate",
"react-component",
"react",
"rough",
"sketchy"
],
"author": "Link Strifer",
"license": "MIT",
"bugs": {
"url": "https://github.com/linkstrifer/react-rough-notation/issues"
}
}