-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.99 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.99 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
72
73
{
"name": "vue3-ts-base",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/meme-button/meme-button.github.io"
},
"license": "MIT",
"author": "Oliver Mak <oliver139.working@gmail.com> (https://github.com/oliver139)",
"scripts": {
"dev": "vite",
"postinstall": "npx simple-git-hooks",
"build": "run-p type-check build-only",
"postbuild": "cp dist/index.html dist/404.html",
"preview": "vite preview",
"build-only": "vite build",
"pr-check": "run-p type-check build-only",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --cache --fix --ignore-path .gitignore",
"getlinks": "ts-node tools/getAllLinks.ts"
},
"dependencies": {
"@raffaelesgarro/vue-use-sound": "^2.0.4",
"@vueuse/core": "^10.5.0",
"normalize.css": "^8.0.1",
"vue": "^3.3.4"
},
"devDependencies": {
"@iconify/vue": "^4.1.1",
"@rushstack/eslint-patch": "^1.5.1",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.8.7",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.51.0",
"eslint-plugin-vue": "^9.17.0",
"eslint-plugin-vuejs-accessibility": "^2.2.0",
"lint-staged": "^15.0.2",
"npm-run-all": "^4.1.5",
"sass": "^1.69.4",
"simple-git-hooks": "^2.9.0",
"ts-node": "^10.9.1",
"typescript": "~5.2.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.5.0",
"vue-tsc": "^1.8.19"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --cache --fix"
]
},
"pnpm": {
"overrides": {
"postcss@<8.4.31": ">=8.4.31"
}
},
"engines": {
"node": "18.18.1"
},
"keywords": [
"memehitsuji",
"hitsujimusumememe",
"memehitsujimusume",
"羊娘めめ"
]
}