-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.84 KB
/
package.json
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
{
"author": {
"name": "netop://ウエブ",
"url": "https://webb.page"
},
"dependencies": {
"marked": "^15.0.3",
"plyr": "^3.7.8",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.10.1",
"@sveltejs/vite-plugin-svelte": "^5.0.1",
"chronver": "*",
"del-cli": "^6.0.0",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"sass": "^1.82.0",
"sass-lint": "^1.13.1",
"stylelint": "^16.11.0",
"stylelint-order": "^6.0.4",
"svelte": "^5.10.1",
"svelte-adapter-bun": "^0.5.2",
"svelte-check": "^4.1.1",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.7.2",
"updates": "^16.4.1",
"vite": "^6.0.3"
},
"name": "homepage",
"private": true,
"scripts": {
"build": "bun run clean && bun run render && vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"clean": "del './build' './static/uchu*'",
"increment": "chronver --increment package",
"lint": "bun run test:svelte && bun run test:typescript",
"pre-commit": "bun run build && bun run increment && git add -A :/",
"prepare": "husky",
"preview": "vite preview",
"render": "sass sass/uchu:static --style compressed",
"start": "bun i && bun run build && PORT=6433 SETTINGS=production bun ./build/index.js",
"test": "run-s test:*",
"test:dependencies": "updates --update ./",
"test:svelte": "svelte-check",
"test:typescript": "tsc --noEmit",
"watch": "bun run render && run-p watch:*",
"watch:develop": "SETTINGS=development vite dev --port 6433 --host --open",
"watch:sass": "sass --watch sass/uchu:static --style compressed"
},
"type": "module",
"version": "2025.01.01"
}