-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.7 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
{
"name": "@jzohdi/react-draw",
"version": "0.9.33",
"description": "A plugin architecture react library for adding drawing ability in the browser.",
"files": [
"dist/**",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --timeout 60000 --exit",
"build": "rm -rf ./dist && rollup -c",
"add": "npm run build && npm run build-storybook && git add -A",
"push": "npm version patch && git push",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"react",
"typescript",
"small",
"bundle",
"drawing",
"paint",
"color",
"plugin"
],
"author": "",
"license": "ISC",
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@jzohdi/jsx-icons": "^0.0.25",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@storybook/addon-docs": "^9.1.8",
"@storybook/addon-onboarding": "^9.1.8",
"@storybook/react-vite": "^9.1.8",
"@types/mocha": "^9.1.1",
"@types/react": "^18.0.14",
"@types/styled-components": "^5.1.25",
"@types/uglify-js": "^3.16.0",
"babel-loader": "^8.2.5",
"mocha": "^10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.75.7",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"storybook": "^9.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}