-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "arodic.github.com",
"version": "1.1.0",
"type": "module",
"packageManager": "pnpm@9.5.0",
"description": "Personal Website of Aki Rodic",
"main": "build/index.js",
"module": "build/index.js",
"typings": "build/index.d.ts",
"files": [
"/src/",
"/build/",
"/docs/",
"/CNAME",
"/robots.txt",
"/manifest.json",
"/index.html"
],
"sideEffects": false,
"scripts": {
"clean": "rm -rf build && rm -rf bundle",
"lint": "eslint -c ./eslint.typescript.js src --fix",
"build": "pnpm clean && pnpm lint && tsc && rollup -c && rm -rf build && mv bundle build",
"dev": "pnpm clean && pnpm lint && tsc -w"
},
"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": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/gtag.js": "^0.0.8",
"eslint": "^9.7.0",
"eslint-plugin-html": "^8.1.1",
"io-gui": "1.4.0-rc9",
"rollup": "^4.18.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
}
}