-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "@upstatement/toolbelt",
"type": "module",
"version": "1.0.0-alpha.2",
"description": "Alpine.js plugin for common accessibility patterns and utilities",
"homepage": "https://toolbelt-ui.netlify.app/",
"main": "dist/module.js",
"keywords": [
"components",
"accessibility",
"a11y",
"headless",
"alpinejs"
],
"author": "Upstatement <tech@upstatement.com>",
"license": "MIT",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/Upstatement/toolbelt/settings"
},
"scripts": {
"dev": "astro dev --port 3000",
"start": "astro dev --port 3000",
"build": "astro build",
"test": "vitest run",
"test:watch": "vitest",
"package:build": "node scripts/build.js"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@types/alpinejs": "^3.13.10",
"jsdom": "^24.1.1",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"vite": "^5.3.5",
"vitest": "^2.0.4"
},
"dependencies": {
"@alpinejs/focus": "^3.13.8",
"@astrojs/starlight": "^0.31.1",
"@astrojs/starlight-tailwind": "^3.0.0",
"@astrojs/tailwind": "^5.1.5",
"alpinejs": "^3.13.7",
"astro": "^5.1.9",
"sharp": "^0.33.3",
"tailwindcss": "^3.4.3"
}
}