-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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": "cally",
"version": "0.9.2",
"description": "small, feature-rich calendar components",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"module": "dist/cally.js",
"types": "dist/cally.d.ts",
"unpkg": "dist/cally.js",
"exports": {
".": {
"types": "./dist/cally.d.ts",
"import": "./dist/cally.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/WickyNilliams/cally"
},
"scripts": {
"start": "vite",
"clean": "rm -rf dist docs/dist",
"prebuild": "npm run clean",
"build": "vite build && npm run astro:build",
"check-types": "attw --pack . --profile esm-only",
"test": "vitest run",
"test:ui": "vitest --ui",
"astro:dev": "astro dev --root ./docs",
"astro:build": "astro check --root ./docs && astro build --root ./docs",
"astro:preview": "astro preview --root ./docs"
},
"dependencies": {
"atomico": "^1.79.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@atomico/tsconfig": "^1.1.2",
"@atomico/vite": "^2.21.1",
"@vitest/browser": "^4.0.16",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/ui": "^4.0.16",
"astro": "^5.5.6",
"hastscript": "^9.0.1",
"playwright": "^1.50.1",
"postcss-nesting": "^13.0.1",
"prettier": "^3.5.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"@arethetypeswrong/cli": "^0.18.2",
"typescript": "^5.8.2",
"vite": "^6.2.4",
"vite-plugin-dts": "^4.5.3",
"vitest": "^4.0.16"
}
}