-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.92 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.92 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
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
{
"name": "react-animatable",
"version": "0.15.2",
"description": "Tiny(~1kB) animation hooks for React, built on Web Animations API.",
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"tsc": "tsc -p . --noEmit",
"test": "vitest run --project=unit",
"test-storybook": "vitest run --project=storybook",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"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",
"@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-docs": "9.1.1",
"@storybook/addon-vitest": "^9.1.1",
"@storybook/react-vite": "9.1.1",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vanilla-extract/css": "^1.17.4",
"@vanilla-extract/vite-plugin": "^5.1.1",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"antd": "^5.0.2",
"framer-motion": "^10.16.16",
"jsdom": "^25.0.1",
"playwright": "^1.55.0",
"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": "9.1.1",
"styled-components": "^6.0.7",
"typedoc": "^0.28.0",
"typedoc-plugin-markdown": "^4.6.3",
"typescript": "^5.8.3",
"vite": "^7.1.0",
"vitest": "^3.2.4",
"web-animations-js": "^2.3.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"
}