-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
114 lines (114 loc) · 3.15 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
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
{
"name": "mantine-contextmenu",
"version": "7.12.2",
"description": "Craft your applications for productivity and meet your users’ expectations by enhancing your Mantine-based UIs with a desktop-grade, lightweight yet fully-featured, dark-theme aware context-menu component, built by the creator of Mantine DataTable",
"keywords": [
"ui",
"mantine",
"context",
"menu",
"context-menu",
"context menu",
"react",
"react server components",
"typescript",
"javascript",
"front-end",
"frontend",
"user interface",
"ui",
"user experience",
"ux",
"productivity",
"usability",
"component"
],
"repository": "icflorescu/mantine-contextmenu",
"homepage": "https://icflorescu.github.io/mantine-contextmenu/",
"bugs": {
"url": "https://github.com/icflorescu/mantine-contextmenu/issues"
},
"license": "MIT",
"author": {
"name": "Ionut-Cristian Florescu",
"email": "ionut.florescu@gmail.com",
"url": "https://github.com/icflorescu"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/icflorescu"
},
"files": [
"./dist",
"./README.md",
"./LICENSE"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./styles.css": "./dist/styles.css",
"./styles.layer.css": "./dist/styles.layer.css"
},
"sideEffects": [
"*.css"
],
"scripts": {
"dev": "next dev",
"build:package": "rm -rf dist; tsup --config scripts/tsup.esm.ts; tsup --config scripts/tsup.cjs.ts; tsup --config scripts/tsup.dts.ts; postcss package/styles*.css -d dist -m",
"build:docs": "next build",
"build": "yarn build:package && yarn build:docs",
"lint": "eslint . && tsc --noEmit --pretty",
"format": "prettier --write ."
},
"devDependencies": {
"@ducanh2912/next-pwa": "^10.2.8",
"@mantine/code-highlight": "^7.12.2",
"@mantine/core": "^7.12.2",
"@mantine/hooks": "^7.12.2",
"@mantine/notifications": "^7.12.2",
"@tabler/icons-react": "^3.14.0",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.3",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"clsx": "^2.1.1",
"cssnano": "^7.0.5",
"eslint": "^8",
"eslint-config-next": "^14.2.7",
"eslint-config-prettier": "^9.1.0",
"lodash": "^4.17.21",
"next": "^14.2.7",
"postcss": "^8.4.44",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"swr": "^2.2.5",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"webpack": "^5.94.0"
},
"peerDependencies": {
"@mantine/core": ">=7.12",
"@mantine/hooks": ">=7.12",
"clsx": ">=2",
"react": ">=18.2"
}
}