-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.3 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-animatable",
"version": "0.15.2",
"description": "Tiny(~1kB) animation hooks for React, built on Web Animations API.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"tsc": "tsc -p . --noEmit",
"test": "vitest run",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:test": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run storybook -- --no-open\" \"wait-on tcp:6006 && test-storybook\"",
"typedoc": "typedoc",
"size": "size-limit",
"prepublishOnly": "npm run typedoc && rimraf lib && npm run build"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/plugin-transform-react-pure-annotations": "^7.22.5",
"@chakra-ui/react": "^2.8.2",
"@emotion/css": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fluentui/react": "^8.103.3",
"@linaria/babel-preset": "^4.3.0",
"@linaria/core": "^4.2.8",
"@linaria/react": "^4.3.6",
"@linaria/webpack-loader": "^4.1.15",
"@mantine/core": "^5.8.4",
"@mantine/hooks": "^5.8.4",
"@mui/material": "^5.10.16",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@size-limit/preset-small-lib": "^11.1.2",
"@storybook/addon-storysource": "^8.4.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/react": "^8.4.0",
"@storybook/react-webpack5": "^8.4.0",
"@storybook/source-loader": "^8.4.0",
"@storybook/test-runner": "^0.20.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vanilla-extract/css": "^1.9.2",
"@vanilla-extract/webpack-plugin": "^2.2.0",
"antd": "^5.0.2",
"babel-loader": "^9.1.3",
"concurrently": "^7.2.2",
"framer-motion": "^10.16.16",
"jsdom": "^25.0.1",
"mini-css-extract-plugin": "^2.7.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-merge-refs": "^2.0.2",
"rimraf": "^5.0.5",
"rollup": "^4.17.2",
"rollup-plugin-banner2": "^1.2.3",
"size-limit": "^11.1.2",
"storybook": "^8.4.0",
"styled-components": "^6.0.7",
"typedoc": "^0.27.0",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.4.5",
"vitest": "^2.1.4",
"wait-on": "^7.0.1",
"web-animations-js": "^2.3.2",
"webpack": "^5.88.2"
},
"peerDependencies": {
"react": ">=16.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/react-animatable.git"
},
"keywords": [
"react",
"react-component",
"react-hooks",
"hooks",
"animation",
"tween",
"transition",
"timeline",
"scroll",
"view",
"visualization",
"svg",
"css",
"canvas",
"d3",
"web-animations"
],
"author": "inokawa <[email protected]> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/react-animatable/issues"
},
"homepage": "https://github.com/inokawa/react-animatable#readme"
}