-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.97 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
{
"name": "react-highlight-menu",
"version": "2.0.2",
"files": [
"dist",
"README.md"
],
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/asyndesis/react-highlight-menu"
},
"homepage": "https://asyndesis.github.io/react-highlight-menu",
"scripts": {
"dev": "vite",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "rm -rf dist && rm -rf pages && tsc && vite build --config vite.config.ts && vite build --config vite.config.pages.ts && dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"deploy:pages": "gh-pages -d pages"
},
"dependencies": {
"@floating-ui/react": "^0.24.3"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.7.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.7",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"framer-motion": "^10.12.17",
"fs-extra": "^11.1.1",
"gh-pages": "^5.0.0",
"jsdom": "^22.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"rollup-plugin-md": "^1.0.1",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-dts": "^3.0.0-beta.3",
"vitest": "^0.32.2"
}
}