-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.2 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
{
"name": "@vladyoslav/drawer",
"version": "0.1.0",
"description": "An unstyled draggable drawer component for React",
"private": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "turbo turbo:test",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"jest": "jest ./src",
"playwright": "playwright test",
"prepare": "husky install"
},
"lint-staged": {
"src/**/!(*.css|*.svg)": [
"eslint --fix",
"prettier --ignore-unknown --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladyoslav/drawer.git"
},
"author": "Vladislav Shalnev <vladislav.a.shalnevv@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladyoslav/drawer/issues"
},
"homepage": "https://github.com/vladyoslav/drawer#readme",
"keywords": [
"react",
"mobile",
"drawer",
"draggable",
"sheet",
"modal",
"dialog",
"unstyled",
"headless"
],
"dependencies": {
"@radix-ui/react-compose-refs": "^1.0.1",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-presence": "^1.0.1",
"@radix-ui/react-primitive": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"react-remove-scroll": "^2.5.7"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@playwright/test": "^1.41.1",
"@swc/core": "^1.3.101",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.6",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "3.1.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"turbo": "^1.12.1",
"typescript": "^5.3.3"
}
}