WXL
3 天以前 9bce51f651aad297ef9eb6df832bfdaf1de05d84
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
{
  "name": "vue-i18n-extract",
  "description": "Manage vue-i18n localization with static analysis",
  "version": "1.2.3",
  "scripts": {
    "build": "rm -fr dist && microbundle --target node -f umd,modern",
    "dev": "microbundle watch --target node",
    "demo": "node ./bin/vue-i18n-extract.js report -v './demo/vue-files/**/*.?(js|vue)' -l './demo/lang/**/*.?(json|yaml|yml)'",
    "test": "jest",
    "test:dev": "jest --watch",
    "lint": "eslint **/*.ts"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "license": "MIT",
  "source": "src/index.ts",
  "bin": "bin/vue-i18n-extract.js",
  "main": "dist/vue-i18n-extract.umd.js",
  "module": "dist/vue-i18n-extract.modern.js",
  "types": "dist/index.d.ts",
  "repository": "https://github.com/pixari/vue-i18n-extract",
  "homepage": "https://github.com/pixari/vue-i18n-extract",
  "bugs": "https://github.com/pixari/vue-i18n-extract/issues",
  "keywords": [
    "javascript",
    "typescript",
    "vue i18n",
    "vue",
    "plugin",
    "internationalization",
    "internationalization-plugin"
  ],
  "author": "Raffaele Pizzari <raffaele.pizzari@gmail.com> (https://raffaelepizzari.com)",
  "dependencies": {
    "commander": "^6.1.0",
    "dot-object": "^2.1.4",
    "glob": "^7.1.6",
    "is-valid-glob": "^1.0.0",
    "js-yaml": "^3.14.0"
  },
  "devDependencies": {
    "@types/dot-object": "^2.1.2",
    "@types/esm": "^3.2.0",
    "@types/glob": "^7.1.3",
    "@types/is-valid-glob": "^1.0.0",
    "@types/jest": "^26.0.14",
    "@types/js-yaml": "^3.12.5",
    "@types/node": "^14.11.2",
    "@types/yargs": "^15.0.7",
    "@typescript-eslint/eslint-plugin": "^4.3.0",
    "@typescript-eslint/parser": "^4.3.0",
    "eslint": "^7.10.0",
    "jest": "^26.4.2",
    "jest-config": "^26.4.2",
    "microbundle": "^0.12.4",
    "ts-jest": "^26.4.1",
    "typescript": "^4.0.3"
  }
}