-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 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": "@tsukuba-neu/sawagani",
"version": "0.0.0",
"description": "Generate accounting report format from CSV data",
"author": "Kazumi Inada <hello@nandenjin.com>",
"private": true,
"keywords": [],
"main": "index.html",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/tsukuba-neu/sawagani.git"
},
"homepage": "https://github.com/tsukuba-neu/sawagani#readme",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --skipDefaultLibCheck --noEmit && vite build",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"format": "prettier --write ."
},
"license": "MIT",
"dependencies": {
"@hyzyla/pdfium": "2.1.12",
"jsoncrush": "1.1.8",
"papaparse": "5.5.3",
"pinia": "3.0.4",
"qr-scanner": "1.4.2",
"qrcode.vue": "3.8.0",
"vue": "3.5.30"
},
"devDependencies": {
"@types/node": "24.12.0",
"@types/papaparse": "5.5.2",
"@vite-pwa/assets-generator": "1.0.2",
"@vitejs/plugin-vue": "6.0.4",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-vue": "10.8.0",
"globals": "17.4.0",
"lint-staged": "16.3.2",
"prettier": "3.8.1",
"simple-git-hooks": "2.13.1",
"typescript-eslint": "8.57.0",
"vite": "7.3.1",
"vite-plugin-pwa": "1.2.0",
"vue-tsc": "3.2.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix",
"*.{js,json,ts,vue,css,md,yaml}": "prettier --write"
}
}