-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
60
61
62
63
64
65
66
67
{
"name": "react-bezier-curve-editor",
"version": "2.1.0",
"type": "module",
"description": "Simple bezier curve editor built with React",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"default": "./lib/index.js"
},
"./index.css": {
"import": "./lib/index.css",
"default": "./lib/index.css"
}
},
"files": [
"lib"
],
"scripts": {
"build": "run-p build:*",
"build:js": "esbuild ./src --bundle --format=esm --external:react --target=es2015,safari13 --outfile=./lib/index.js --analyze",
"build:types": "tsc -p .",
"watch": "run-p watch:*",
"watch:js": "esbuild ./src --watch --bundle --format=esm --external:react --target=es2015,safari13 --outfile=./lib/index.js",
"watch:types": "tsc -w -p .",
"prepare": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"React",
"UI",
"Bezier Curve"
],
"repository": "https://github.com/LiamMartens/react-bezier-curve-editor",
"author": "Liam Martens <[email protected]>",
"license": "ISC",
"devDependencies": {
"@storybook/addon-essentials": "^7.6.3",
"@storybook/addon-interactions": "^7.6.3",
"@storybook/addon-links": "^7.6.3",
"@storybook/addon-onboarding": "^1.0.9",
"@storybook/blocks": "^7.6.3",
"@storybook/react": "^7.6.3",
"@storybook/react-webpack5": "^7.6.3",
"@storybook/test": "^7.6.3",
"@types/react": ">=18",
"@types/react-dom": ">=18",
"esbuild": "^0.19.8",
"npm-run-all": "^4.1.5",
"react": ">=18",
"react-dom": ">=18",
"storybook": "^7.6.3",
"typescript": "^5.0.0"
},
"dependencies": {
"classnames": "^2.2.6"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"packageManager": "[email protected]"
}