-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.87 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.87 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "clawspace",
"type": "module",
"version": "2.1.0",
"description": "Clawspace - browser file explorer/editor for OpenClaw workspaces",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "npm run format:check && astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write . && eslint --fix .",
"format:check": "prettier --check . && eslint --max-warnings 0 .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "^4.3.13",
"@astrojs/netlify": "^6.6.5",
"@astrojs/node": "^9.5.5",
"@astrojs/react": "^5.0.0",
"@astrojs/rss": "^4.0.17",
"@astrojs/sitemap": "^3.7.0",
"@expressive-code/plugin-line-numbers": "^0.41.6",
"@fontsource/inter": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@github/relative-time-element": "^5.0.0",
"@tanstack/react-query": "^5.90.21",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@varlock/astro-integration": "^0.1.0",
"astro": "^5.18.1",
"astro-expressive-code": "^0.41.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "^1.7.0",
"lite-youtube-embed": "^0.3.4",
"lucide-react": "^0.563.0",
"luxon": "^3.7.2",
"marked": "^17.0.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-directive": "^4.0.0",
"rss-parser": "^3.13.0",
"tailwind-merge": "^3.4.0",
"typescript": "^5.6.0",
"unist-util-visit": "^5.1.0",
"varlock": "^0.1.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/vite": "^4.2.1",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^27.0.0",
"@types/luxon": "^3.7.1",
"@types/node": "^25.0.3",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^17.4.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"jsdom": "^27.4.0",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"slugify": "^1.6.8",
"tailwindcss": "^4.2.1",
"typescript-eslint": "^8.57.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickytonline/clawspace.git"
},
"keywords": [
"astro",
"workspace",
"file-browser",
"code-editor"
],
"author": "Nick Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/nickytonline/clawspace/issues"
},
"homepage": "https://github.com/nickytonline/clawspace#readme",
"lint-staged": {
"*.{js,jsx,ts,tsx,astro}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,mdx,css,html,yml,yaml}": [
"prettier --write"
]
}
}