-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.84 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
70
71
{
"name": "rinri",
"private": true,
"version": "0.1.0",
"description": "技術者倫理を守ろう — landing site for 技術者倫理.com",
"homepage": "https://技術者倫理.com",
"repository": {
"type": "git",
"url": "git+https://github.com/EdamAme-x/rinri.git"
},
"bugs": {
"url": "https://github.com/EdamAme-x/rinri/issues"
},
"author": "EdamAme-x",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@9.12.3",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite-ssg build",
"build:only": "vite-ssg build",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,vue,js,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css,html}": [
"prettier --write"
]
},
"dependencies": {
"lucide-vue-next": "^1.0.0",
"vue": "^3.5.33",
"vue3-simple-icons": "^16.10.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@unhead/vue": "^2.1.13",
"@vizejs/vite-plugin": "^0.124.0",
"@vue/tsconfig": "^0.9.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.18.2",
"unhead": "^2.1.13",
"vite": "^8.0.14",
"vite-ssg": "^28.3.0",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.2.12"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
}
}