-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.64 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-curved-text",
"version": "3.0.1",
"description": "A library for creating circular / curved texts in React projects",
"keywords": [
"react",
"curved text",
"curved",
"circular",
"arc"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rimraf dist && rollup -c --environment NODE_ENV:production",
"start": "rimraf dist && rollup -c -w --environment NODE_ENV:development",
"prepublishOnly": "npm run build",
"start-storybook": "vite --port 3183",
"preview-storybook": "vite preview",
"build-storybook": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/obss/react-curved-text.git"
},
"homepage": "https://obss.github.io/react-curved-text",
"license": "MIT",
"author": "ahmetemrekilinc",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "7.19.0",
"@babel/eslint-parser": "7.18.9",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-function-bind": "7.18.9",
"@babel/plugin-transform-react-jsx": "7.19.0",
"@babel/preset-env": "7.19.0",
"@babel/preset-react": "7.18.6",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "14.0.1",
"@rollup/plugin-replace": "4.0.0",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jsx-to-string": "1.4.0",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "2.79.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "5.8.1",
"vite": "^4.4.5"
},
"dependencies": {
"svg-path-commander": "1.0.5"
},
"files": [
"dist"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}