-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.41 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
{
"name": "arodic.github.com",
"version": "1.2.0",
"type": "module",
"packageManager": "pnpm@10.26.1",
"description": "Personal Website of Aki Rodic",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"/src/",
"/dist/",
"/docs/",
"/CNAME",
"/robots.txt",
"/manifest.json",
"/index.html"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "pnpm clean && tsc",
"bundle": "pnpm lint && pnpm build && node bundle.js",
"lint": "eslint . --fix",
"test": "vitest",
"clean": "rm -rf build && rm -rf bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arodic/arodic.github.com.git"
},
"author": "Aki Rodic",
"license": "ISC",
"bugs": {
"url": "https://github.com/arodic/arodic.github.com/issues"
},
"homepage": "https://akirodic.com",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-strip": "^3.0.4",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/gtag.js": "^0.0.8",
"@types/node": "^25.0.3",
"@io-gui/core": "2.0.0-alpha.3",
"@io-gui/markdown": "2.0.0-alpha.3",
"@io-gui/menus": "2.0.0-alpha.3",
"@io-gui/navigation": "2.0.0-alpha.3",
"eslint": "9.39.2",
"terser": "^5.44.1",
"tslib": "^2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.50.0",
"vite": "^7.3.0",
"vitest": "^4.0.16"
}
}