-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 KB
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
{
"name": "@holistics/dbx-multi-lang",
"version": "1.1.13",
"description": "Multi-language support package for DBDiagram",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./dist/en.json": "./dist/en.json",
"./dist/vi.json": "./dist/vi.json",
"./dist/zh.json": "./dist/zh.json",
"./dist/ja.json": "./dist/ja.json",
"./dist/pt-BR.json": "./dist/pt-BR.json"
},
"files": [
"dist",
"locales"
],
"scripts": {
"build": "node scripts/build-locales.cjs && vite build",
"prelink": "npm run build",
"link": "yarn link",
"clean": "rm -rf ./dist",
"prepublishOnly": "yarn build",
"build:locales": "node scripts/build-locales.cjs",
"test": "node --test tests/**/*.cjs"
},
"keywords": [
"i18n",
"localization",
"multi-language"
],
"author": "",
"license": "MIT",
"dependencies": {
"js-yaml": "^4.1.1"
},
"devDependencies": {
"vite": "^5.0.0"
},
"repository": "https://github.com/holistics/dbx-multi-lang.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}