-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 993 Bytes
/
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
{
"name": "nuxt-i18n-default",
"version": "0.1.1",
"description": "Add $td() method to specify default value",
"type": "module",
"main": "src/module.js",
"types": "types/types-vue3.d.ts",
"scripts": {
"test": "npm run lint",
"lint": "eslint src/*.js",
"lint:fix": "eslint src/*.js --fix",
"prepublishOnly": "npm run test",
"precommit": "echo 'Pre-commit checks...' && npm run lint"
},
"pre-commit": [
"precommit"
],
"keywords": [
"vue",
"nuxt",
"i18n",
"default"
],
"author": "shrpne <[email protected]>",
"license": "MIT",
"repository": "https://github.com/shrpne/nuxt-i18n-default",
"bugs": {
"url": "https://github.com/shrpne/nuxt-i18n-default/issues"
},
"homepage": "https://github.com/shrpne/nuxt-i18n-default",
"dependencies": {
"@nuxt/kit": "^3.1.0",
"entity-decode": "^2.0.2"
},
"devDependencies": {
"eslint": "^8",
"eslint-plugin-import": "^2.27.5",
"pre-commit": "^1.2.2"
}
}