-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.71 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.71 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
{
"name": "@reactleaf/calendar",
"version": "0.1.0",
"packageManager": "pnpm@10.11.0",
"repository": {
"type": "git",
"url": "git+https://github.com/reactleaf/calendar.git"
},
"homepage": "https://reactleaf.github.io/calendar/",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./index.css": "./dist/index.css"
},
"scripts": {
"dev": "pnpm --filter ./docs dev",
"build:lib": "vite build",
"build:docs": "pnpm --filter ./docs build",
"lint": "oxlint --react-plugin --vitest-plugin --import-plugin ./src",
"typecheck": "tsc -b",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"perf:scroll": "node scripts/measure-scroll-perf.mjs",
"publish:npm": "pnpm build:lib && npm publish --access public --ignore-scripts",
"test": "vitest run",
"test:watch": "vitest",
"verify": "pnpm run format:check && pnpm run lint && pnpm run test && pnpm run build:lib"
},
"dependencies": {
"@js-temporal/polyfill": "^0.5.1",
"clsx": "^2.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.58.7",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.0.2",
"oxfmt": "0.48.0",
"oxlint": "1.63.0",
"typescript": "~6.0.2",
"unplugin-dts": "^1.0.0",
"vite": "^8.0.4",
"vitest": "^4.1.4"
}
}