-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 4.63 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "devtools",
"description": "i18n devtools for debugging Intlify applications",
"version": "0.0.0",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/inlitify/devtools/issues"
},
"changelog": {
"labels": {
"Type: Feature": ":star: Features",
"Type: Bug": ":bug: Bug Fixes",
"Type: Security": ":lock: Security Fixes",
"Type: Performance": ":chart_with_upwards_trend: Performance Fixes",
"Type: Improvement": ":zap: Improvement Features",
"Type: Breaking": ":boom: Breaking Change",
"Type: Deprecated": ":warning: Deprecated Features",
"Type: I18n": ":globe_with_meridians: Internationalization",
"Type: A11y": ":wheelchair: Accessibility",
"Type: Documentation": ":pencil: Documentation"
}
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^2.1.2",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"@vitejs/plugin-vue": "^1.2.1",
"@vue/compiler-sfc": "^3.0.11",
"@vuedx/typecheck": "^0.6.0",
"@vuedx/typescript-plugin-vue": "^0.6.0",
"chalk": "^4.1.0",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"esbuild-register": "^2.3.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-vue": "^7.7.0",
"eslint-plugin-vue-libs": "^4.0.0",
"fixpack": "^4.0.0",
"jest": "^26.6.0",
"jest-watch-typeahead": "^0.6.1",
"lerna-changelog": "^1.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"shipjs": "^0.23.0",
"ts-jest": "^26.5.0",
"typescript": "^4.2.3",
"typescript-eslint-language-service": "^4.1.3",
"vite": "^2.1.5"
},
"engines": {
"node": ">= 12"
},
"keywords": [
"dev-server",
"devtools",
"i18n",
"intlify",
"vite"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/devtools.git"
},
"scripts": {
"build": "yarn build:shared && yarn build:vite-plugin && yarn build:devtools && yarn build:clawler && yarn build:shell-dev",
"build:clawler": "cd packages/clawler && yarn build",
"build:devtools": "cd packages/devtools && yarn build",
"build:shared": "cd packages/shared && yarn build",
"build:shell-dev": "cd packages/shell-dev && yarn build",
"build:vite-plugin": "cd packages/vite-plugin-intlify-devtools && yarn build",
"clean:cache": "yarn clean:cache:jest",
"clean:cache:jest": "jest --clearCache",
"clean:deps": "npm-run-all --parallel clean:deps:*",
"clean:deps:clawler": "cd packages/clawler && rm -rf node_modules",
"clean:deps:devtools": "cd packages/devtools && rm -rf node_modules",
"clean:deps:shared": "cd packages/shared && rm -rf node_modules && rm -rf tsconfig.tsbuildinfo",
"clean:deps:shell-dev": "cd packages/shell-dev && rm -rf node_modules",
"clean:deps:vite-plugin": "cd packages/vite-plugin-intlify-devtools && rm -rf node_modules && rm -rf tsconfig.tsbuildinfo",
"dev": "concurrently -c 'blue.bold,magenta.bold' 'npm:serve:devtools' 'npm:dev:shell-dev'",
"dev:clawler": "cd packages/clawler && yarn dev",
"dev:devtools": "cd packages/devtools && yarn dev",
"dev:shell-dev": "cd packages/shell-dev && yarn dev",
"fix": "npm-run-all --parallel lint:fix format:fix",
"format:fix": "npm-run-all --parallel \"format:prettier --write\" format:package",
"format:package": "node -r esbuild-register ./scripts/fixpack.ts",
"format:prettier": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{js,json,html}'",
"lint": "npm-run-all --parallel lint:codes",
"lint:codes": "eslint ./packages --ext .js,.ts,.vue",
"lint:fix": "npm-run-all --parallel \"lint:codes --fix\"",
"preinstall": "node ./scripts/checkYarn.js",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger",
"serve:clawler": "cd packages/clawler && yarn serve --port 5002",
"serve:devtools": "cd packages/devtools && yarn serve --port 5001",
"setup:secret": "node -r esbuild-register ./scripts/generateMetaSecret.ts",
"test": "npm-run-all test:unit",
"test:cover": "yarn test:unit --coverage",
"test:unit": "yarn clean:cache:jest && jest --env node",
"watch": "concurrently -c 'blue.bold,magenta.bold' 'npm:watch:shared' 'npm:watch:vite-plugin'",
"watch:shared": "cd packages/shared && yarn watch",
"watch:vite-plugin": "cd packages/vite-plugin-intlify-devtools && yarn watch"
},
"workspaces": [
"packages/*"
]
}