forked from zen-fs/zen-fs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 895 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 895 Bytes
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
{
"name": "zenfs.dev",
"type": "module",
"version": "1.0.0",
"description": "The website for ZenFS",
"main": "index.js",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "tsc -p tsconfig.json --noEmit && eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zen-fs/website.git"
},
"author": "James Prevett <jp@jamespre.dev> (https://jamespre.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zen-fs/website/issues"
},
"homepage": "https://github.com/zen-fs/website#readme",
"dependencies": {
"astro": "^4.15.4"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.8.0",
"eslint": "^9.10.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
}
}