-
Notifications
You must be signed in to change notification settings - Fork 376
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.82 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@openmrs/esm-translations",
"version": "10.0.0",
"license": "MPL-2.0",
"description": "O3 Framework module for translation support",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./src/public": {
"types": "./dist/public.d.ts",
"default": "./dist/public.js"
},
"./mock": {
"import": "./mock.ts",
"require": "./mock-jest.ts"
},
"./package.json": {
"default": "./package.json"
}
},
"source": true,
"scripts": {
"build": "rimraf dist && concurrently \"swc --strip-leading-paths src -d dist\" \"tsc --project tsconfig.build.json\"",
"clean": "git clean -fdX -- dist",
"build:development": "rimraf dist && concurrently \"swc --strip-leading-paths src -d dist\" \"tsc --project tsconfig.build.json\"",
"typescript": "tsc --project tsconfig.build.json",
"lint": "eslint src",
"extract-translations": "i18next src/translations.ts --config='i18next-parser.config.mjs'"
},
"keywords": [
"openmrs",
"microfrontends"
],
"directories": {
"lib": "dist",
"src": "src"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-core.git"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-core/issues"
},
"homepage": "https://github.com/openmrs/openmrs-esm-core#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"i18next": "^25.5.3"
},
"peerDependencies": {
"i18next": "25.x"
},
"devDependencies": {
"@swc/cli": "0.8.1",
"@swc/core": "1.15.21",
"concurrently": "^9.2.1",
"i18next-parser": "^9.3.0",
"rimraf": "^6.1.3"
}
}