-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.97 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "ekiden",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "pnpm '/^.*:check/'",
"fix": "pnpm '/^.*:fix/'",
"astro": "astro",
"astro:check": "astro check",
"lint:check": "eslint --cache src",
"lint:fix": "eslint --cache --fix src",
"test": "vitest",
"prettier:check": "prettier --cache --check --plugin-search-dir=. src",
"prettier:fix": "prettier --cache --write --plugin-search-dir=. src",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/rss": "^4.0.19",
"@astrojs/svelte": "^8.1.2",
"@fontsource/kaushan-script": "^5.2.8",
"@fontsource/yuji-syuku": "^5.2.7",
"@unocss/reset": "<=66.8.0",
"astro": "^6.4.8",
"chart.js": "^4.5.1",
"dayjs": "^1.11.21",
"sharp": "^0.35.3",
"svelte": "^5.56.4"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.10.10",
"@eslint/js": "^10.0.1",
"@iconify-json/radix-icons": "^1.2.5",
"@iconify-json/tabler": "^1.2.35",
"@std/collections": "jsr:^1.0.6",
"@types/eslint__js": "^9.14.0",
"@types/node": "^25.8.0",
"@typescript-eslint/utils": "^8.62.1",
"@unocss/eslint-config": "<=66.8.0",
"@unocss/preset-web-fonts": "<=66.8.0",
"@unocss/reset": "<=66.8.0",
"astro-eslint-parser": "^1.4.0",
"eslint": "^10.6.0",
"eslint-plugin-astro": "^1.7.0",
"prettier": "^3.9.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^4.1.1",
"type-fest": "^5.7.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.62.0",
"ufo": "^1.6.4",
"unocss": "<= 66.6.0",
"vitest": "^4.1.10"
},
"private": true,
"packageManager": "pnpm@10.30.3",
"engines": {
"runtime": {
"name": "node",
"version": "^22.14.0",
"onFail": "download"
}
}
}