-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.16 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.16 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@oxbow/ui",
"version": "0.0.1",
"description": "Oxbow UI – open-source building blocks for modern product sites",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/UnwrappedDesign/oxbow.git"
},
"bugs": {
"url": "https://github.com/UnwrappedDesign/oxbow/issues"
},
"scripts": {
"dev": "concurrently 'npm:serve:*(!dist)'",
"build": "astro build",
"start": "npm run build && npm run serve:dist",
"preview": "astro preview",
"astro": "astro",
"serve:dev": "astro dev",
"serve:dist": "npx serve ./dist",
"serve": "npm run serve:dev",
"screenshots": "npm run screenshots:build && concurrently -k --success first \"npm run screenshots:serve\" \"npm run screenshots:capture\"",
"screenshots:build": "astro build",
"screenshots:serve": "astro preview --host --port 4321 --strictPort",
"screenshots:capture": "PLAYWRIGHT_BROWSERS_PATH=0 node bin/screenshots-playwright.mjs",
"screenshots:install": "PLAYWRIGHT_BROWSERS_PATH=0 npx playwright install chromium",
"screenshots:legacy": "concurrently -k --success first \"npm run serve:dev -- --host --port 4321 --strictPort\" \"node bin/screenshots.cjs\"",
"safelist": "node bin/twsafelist.cjs",
"registry:build": "node bin/build-registry.cjs",
"cli:build": "npm run build -w oxbowui",
"mcp:build": "npm run build -w oxbowui-mcp",
"packages:build": "npm run registry:build && npm run cli:build && npm run mcp:build",
"oxbow": "node packages/cli/src/index.js",
"oxbow-ui": "node packages/cli/src/index.js",
"oxbowui": "node packages/cli/src/index.js",
"pack:cli": "npm pack -w oxbowui --dry-run",
"pack:mcp": "npm pack -w oxbowui-mcp --dry-run",
"publish:cli": "npm publish -w oxbowui",
"publish:mcp": "npm publish -w oxbowui-mcp --access public"
},
"dependencies": {
"@alpinejs/focus": "^3.15.8",
"@alpinejs/intersect": "^3.15.8",
"@alpinejs/ui": "^3.15.8",
"@astrojs/alpinejs": "^0.4.9",
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/ts-plugin": "^1.10.6",
"@astrolib/seo": "^1.0.0-beta.8",
"@ryangjchandler/alpine-clipboard": "^2.3.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.1",
"@types/react-dom": "^19.2.3",
"alpinejs": "^3.15.8",
"astro": "^5.18.0",
"astro-font": "^1.1.0",
"lucide-react": "^0.575.0",
"outdent": "^0.8.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-rnd": "^10.5.2",
"shiki": "^3.23.0",
"tailwind-scrollbar-hide": "^4.0.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.59.0"
},
"devDependencies": {
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.3.1",
"concurrently": "^9.2.1",
"playwright": "^1.58.2",
"prettier": "3.8.1",
"prettier-plugin-astro": "^0.14.1",
"puppeteer": "^24.37.5",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}