-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.72 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
{
"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": "vite build",
"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": {
"@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",
"@size-limit/preset-small-lib": "^11.1.2",
"@storybook/addon-docs": "^10.3.4",
"@storybook/addon-vitest": "^10.3.4",
"@storybook/react-vite": "^10.3.4",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vanilla-extract/css": "^1.17.4",
"@vanilla-extract/vite-plugin": "^5.2.0",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-v8": "^4.1.0",
"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",
"size-limit": "^11.1.2",
"storybook": "^10.3.4",
"styled-components": "^6.0.7",
"terser": "^5.48.0",
"typedoc": "^0.28.0",
"typedoc-plugin-markdown": "^4.6.3",
"typescript": "^5.8.3",
"vite": "^8.0.5",
"vite-plugin-dts": "^5.0.2",
"vitest": "^4.1.0",
"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 <stratoooo-taster@yahoo.co.jp> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/react-animatable/issues"
},
"homepage": "https://github.com/inokawa/react-animatable#readme"
}