-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.51 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.51 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
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "react-float-menu",
"version": "0.4.7",
"author": {
"name": "Prabhu Murthy",
"email": "prabhu.m.murthy@gmail.com"
},
"homepage": "https://github.com/prabhuignoto/react-float-menu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/prabhuignoto/react-float-menu"
},
"description": "Smart draggable floating menu component for React",
"keywords": [
"react",
"float",
"menu",
"smart menu",
"floating menu",
"draggable menu"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"cache": "cache/.npm"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint:js": "eslint src/**/*.tsx",
"lint:js-fix": "eslint src/**/*.tsx --fix",
"lint:css": "stylelint src/**/*.scss",
"lint:css-fix": "stylelint --fix src/**/*.scss",
"lint:all": "pnpm lint:js && pnpm lint:css",
"format": "prettier --write src/**/*.{tsx,scss}",
"snyk:monitor": "pnpm dlx snyk monitor",
"snyk:test": "pnpm dlx snyk test",
"test": "pnpm vitest run -c ./vitest.config.ts",
"cypress:open": "pnpm dlx cypress open",
"cypress:quiet": "pnpm exec cypress run --headless --quiet --browser chrome",
"test:dev": "vitest watch -c ./vitest.config.ts --silent",
"test:coverage": "vitest run -c ./vitest.config.ts --coverage"
},
"browserslist": [
"last 2 versions",
"not op_mini all",
"not ie <= 11"
],
"dependencies": {
"classnames": "^2.3.2",
"nanoid": "^4.0.2",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"main": "dist/react-float-menu.cjs",
"module": "dist/react-float-menu.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-float-menu.esm.js",
"require": "./dist/react-float-menu.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.0.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^20.11.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/testing-library__jest-dom": "^5.14.8",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-v8": "^2.0.0",
"autoprefixer": "^10.4.20",
"c8": "^9.1.0",
"cssnano": "^7.0.0",
"cypress": "^13.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.1.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"globals": "^15.0.0",
"husky": "^9.0.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.0.0",
"postcss": "^8.4.49",
"postcss-preset-env": "^10.0.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.0",
"sass": "^1.81.0",
"stylelint": "^16.0.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "^5.9.3",
"typescript-plugin-css-modules": "^5.0.1",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^2.0.0"
}
}