-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.08 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
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
74
{
"name": "vitepress-i18n",
"version": "1.3.0",
"description": "VitePress i18n is a plugin for VitePress that makes it easy to translate text in the default theme and search tool.",
"type": "module",
"types": "dist/index.d.ts",
"author": "jooy2 <[email protected]>",
"license": "MIT",
"homepage": "https://vitepress-i18n.cdget.com",
"repository": {
"type": "git",
"url": "https://github.com/jooy2/vitepress-i18n"
},
"bugs": {
"url": "https://github.com/jooy2/vitepress-i18n/issues"
},
"scripts": {
"build": "npm run format:fix && tsc --project tsconfig.prod.json && npm run minify",
"test": "npm run build && glob -c \"tsx --test\" \"./test/**/*.test.ts\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"minify": "terser dist/index.js --config-file .terserrc -o dist/index.js && terser dist/strings.js --config-file .terserrc -o dist/strings.js",
"prepare": "npm run build",
"format": "prettier .",
"format:fix": "prettier . --write",
"docs:dev": "npm run build && vitepress dev docs",
"docs:build": "npm run build && vitepress build docs",
"docs:serve": "npm run build && npm run docs:build && vitepress serve docs"
},
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {
"index.d.ts": [
"dist/index.d.ts"
]
}
},
"keywords": [
"i18n",
"locale",
"language",
"translation",
"translate",
"internationalization",
"vitepress",
"vitepress-plugin",
"util",
"utility",
"generator",
"plugin"
],
"devDependencies": {
"@types/node": "^22.7.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.31.0",
"glob": "^11.0.0",
"prettier": "^3.3.3",
"terser": "^5.36.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitepress": "^1.4.5",
"vitepress-sidebar": "^1.29.0"
}
}