This repository was archived by the owner on Sep 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.87 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "nuxt-i18n-next",
"version": "0.0.13",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/kazupon/nuxt-i18n-next/issues"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/debug": "^4.1.7",
"@types/mocha": "^9.0.0",
"@types/semver": "^7.3.9",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"debug": "^4.3.3",
"defu": "^5.0.0",
"destr": "^1.1.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"globby": "^11.0.4",
"jiti": "^1.12.9",
"listhen": "^0.2.5",
"mlly": "^0.3.13",
"mocha": "^9.1.3",
"object-hash": "^2.2.0",
"ohmyfetch": "^0.4.8",
"pathe": "^0.2.0",
"playwright-chromium": "^1.17.1",
"prettier": "^2.5.0",
"semver": "^7.3.5",
"sinon": "^12.0.1",
"typescript": "^4.5.2",
"yarn-run-all": "^3.1.1"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"
},
"homepage": "https://github.com/kazupon/nuxt-i18n-next#readme",
"license": "MIT",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/kazupon/nuxt-i18n-next.git"
},
"resolutions": {
"@kazupon/nuxt-i18n-next": "workspace:./packages/nuxt-i18n"
},
"scripts": {
"build:all": "run-s \"build:i18n\" \"build:play\"",
"build:bridge": "cd playground/bridge && npm run build",
"build:i18n": "cd packages/nuxt-i18n && yarn build",
"build:nuxt3": "cd playground/nuxt3 && npm run build",
"build:play": "run-p \"build:nuxt2\" \"build:bridge\" \"build:nuxt3\"",
"bump": "./scripts/bump.sh",
"clean": "run-p \"uninstall:*\"",
"fix": "run-p \"lint:fix format:fix\"",
"format:fix": "run-p \"format:prettier -- --write\"",
"format:prettier": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{js,json,html}'",
"install:demo": "cd playground/demo && npm i --legacy-peer-deps",
"lint": "run-p lint:codes",
"lint:codes": "eslint --ext .js,.ts,.vue,.json .",
"lint:fix": "run-p \"lint:codes --fix\"",
"play:bridge": "cd playground/bridge && npm run dev",
"play:demo": "cd playground/demo && npm run dev",
"play:nuxt3": "cd playground/nuxt3 && npm run dev",
"release": "./scripts/release.sh",
"setup": "run-s \"build:i18n\" \"install:demo\"",
"test": "run-s \"test:unit\"",
"test:type": "tsc -p . --noEmit",
"test:unit": "mocha -r jiti/register -r ./test/hooks/build.ts -r ./test/hooks/browser.ts test/*.test.ts",
"uninstall:demo": "cd playground/demo && rm -rf node_modules package-lock.json"
},
"workspaces": [
"packages/*",
"playground/bridge",
"playground/nuxt3",
"test/fixtures/*"
]
}