-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "ehpc.io",
"description": "ehpc's personal website",
"repository": "https://github.com/ehpc/ehpc.io",
"homepage": "https://ehpc.io",
"author": {
"name": "Eugene Maslovich",
"url": "https://ehpc.io",
"email": "ehpc@ehpc.io"
},
"private": true,
"version": "2.1.4",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24.7.0"
},
"packageManager": "bun@1.2.22",
"scripts": {
"dev": "vite",
"build": "bun fmt && bun lint && bun build:wasm && tsc && vite build",
"build:vite": "bun lint && tsc && vite build",
"build:wasm": "wasm-pack build ./wasm --target bundler --release",
"preview": "vite preview",
"lint": "bun lint:html && bun lint:css && bun lint:ts",
"lint:ts": "oxlint --deny-warnings --type-aware",
"lint:css": "stylelint 'src/**/*.css'",
"lint:html": "htmlhint './index.html' '.src/**/*.html'",
"fmt": "dprint fmt",
"test:all": "bun test:wasm && bun test",
"test:wasm": "cd wasm && cargo test",
"prepare": "husky"
},
"devDependencies": {
"@types/bun": "latest",
"autoprefixer": "^10.4.21",
"cssnano": "^7.1.1",
"dprint": "^0.50.1",
"htmlhint": "^1.7.1",
"husky": "^9.1.7",
"oxlint": "^1.14.0",
"oxlint-tsgolint": "^0.2.0",
"postcss": "^8.5.6",
"postcss-preset-env": "^10.3.1",
"stylelint": "^16.23.1",
"stylelint-config-css-modules": "^4.5.1",
"stylelint-config-standard": "^39.0.0",
"typescript": "~5.8.3",
"typescript-plugin-css-modules": "^5.2.0",
"vite": "^7.1.4",
"vite-plugin-wasm": "^3.5.0"
}
}