-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "rough-react-wrapper",
"version": "1.0.2",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": ["dist"],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"start": "rollup -c -w",
"publish": "npm run build && npm publish"
},
"dependencies": {
"use-deep-compare-effect": "^1.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/react": "^18.2.24",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"roughjs": "^4.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/fsefidabi/rough-react-wrapper.git"
},
"homepage": "https://github.com/fsefidabi/rough-react-wrapper",
"author": "Farzaneh Sefidabi",
"license": "MIT",
"description": "React wrapper for [RoughJs](https://roughjs.com/), a JavaScript library for creating sketchy, hand-drawn graphics.",
"keywords": [
"rough",
"roughjs",
"react",
"next",
"sketchy",
"hand-drawn",
"graphic",
"canvas",
"svg"
]
}