-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "mantine-scheduler",
"version": "0.0.7",
"author": {
"name": "Joseph Adamita",
"email": "[email protected]"
},
"description": "",
"license": "MIT",
"keywords": [
"mantine",
"scheduler",
"ui"
],
"type": "module",
"main": "dist/main.js",
"types": "dist/lib/main.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig-build.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"publish": "npm publish",
"release": "pnpm run build && changeset publish"
},
"peerDependencies": {
"@mantine/core": "^7.11.2",
"@mantine/hooks": "^7.11.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/node": "^22.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.8.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"glob": "^11.0.0",
"postcss": "^8.4.40",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.3.3",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-dts": "4.0.0-beta.1",
"vite-plugin-lib-inject-css": "^2.1.1"
},
"sideEffects": [
"**/*.css"
],
"dependencies": {
"dayjs": "^1.11.12"
}
}