-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.7 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
{
"name": "use-layers",
"version": "0.0.7",
"description": "imagine there's no z-index, it's easy if you try use-layers",
"author": "szamanr",
"keywords": [],
"files": [
"dist",
"src"
],
"license": "MIT",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/szamanr/use-layers.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"watch": "vitest",
"coverage": "vitest run --coverage"
},
"type": "module",
"types": "dist/index.d.ts",
"devDependencies": {
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.0.1",
"@testing-library/user-event": "14.1.1",
"@types/jest": "27.4.1",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"@vitejs/plugin-react": "1.3.1",
"eslint": "8.13.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-react": "7.29.4",
"jsdom": "19.0.0",
"prettier": "2.6.2",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-test-renderer": "18.0.0",
"typescript": "4.6.3",
"vite": "2.9.5",
"vite-plugin-dts": "1.0.5",
"vitest": "0.9.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"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]"
}