-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) 路 1.6 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) 路 1.6 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
{
"name": "intlify.dev",
"description": "The borderless internationalization",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
},
"type": "module",
"packageManager": "pnpm@11.7.0",
"engines": {
"node": ">= 20"
},
"dependencies": {
"vue": "^3.5.38",
"vue-i18n": "^11.4.5"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^4.5.1",
"@intlify/unplugin-vue-i18n": "^11.2.3",
"@tailwindcss/typography": "^0.5.20",
"@types/node": "^22.15.0",
"autoprefixer": "^10.5.0",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.9.2",
"lint-staged": "^17.0.7",
"postcss": "^8.5.15",
"prettier": "^3.8.4",
"tailwindcss": "^3.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vitepress": "^1.6.4"
},
"scripts": {
"build": "vitepress build",
"dev": "vitepress dev",
"preview": "vitepress preview",
"test": "pnpm run lint",
"fix": "pnpm run lint:fix & pnpm run format:fix",
"format": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{ts,js,html,json}'",
"format:fix": "pnpm format --write",
"lint": "pnpm run lint:eslint",
"lint:eslint": "eslint .vitepress",
"lint:fix": "pnpm lint:eslint --fix"
},
"lint-staged": {
"*.{json,md,yml}": [
"prettier --write"
],
"*.{js,vue}": [
"prettier --write",
"eslint --fix"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint --fix"
]
}
}