-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.78 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-showtime",
"version": "0.3.9",
"description": "Animate the entry/exit of React elements during mount/unmount with CSS transitions.",
"author": "Scott Lederer",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/lederer/react-showtime.git"
},
"type": "module",
"main": ".dist/react-showtime.umd.cjs",
"module": ".dist/react-showtime.js",
"exports": {
".": {
"import": "./dist/react-showtime.js",
"require": "./dist/react-showtime.umd.cjs"
}
},
"types": "index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16",
"npm": ">=5"
},
"bugs": {
"url": "https://github.com/lederer/react-showtime/issues"
},
"scripts": {
"start": "vite",
"build": "vite build",
"watch": "vite build -w",
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "eslint src example/src",
"deploy": "yarn install && yarn run build && cd example && yarn install && yarn run build",
"compile": "tsc"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.14.2",
"@eslint/js": "^9.11.1",
"@rollup/plugin-eslint": "^9.0.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"csstype": "^3.1.3",
"eslint": "^9.11.1",
"jsdom": "^25.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.3.1",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vitest": "^2.1.1"
},
"packageManager": "[email protected]"
}