-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathpackage.json
28 lines (28 loc) · 898 Bytes
/
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
{
"name": "qcalendar",
"version": "1.0.0",
"description": "QCalendar mono-repo",
"author": "Jeff Galbraith <[email protected]>",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"clean": "rm -rf node_modules pnpm-lock.yaml packages/ui/node_modules packages/docs/node_modules",
"build": "pnpm run build:ui && pnpm run build:docs",
"build:ui": "cd packages/ui && pnpm build",
"build:docs": "cd packages/docs && pnpm build",
"ci:publish": "pnpm -r publish --access public --publish-branch dev"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "~5.7.3",
"unbuild": "^3.3.1",
"vitest": "^2.1.8"
}
}