forked from openmrs/openmrs-esm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.24 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.24 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
71
72
73
74
75
76
77
78
79
{
"name": "@openmrs/esm-api",
"version": "9.0.2",
"license": "MPL-2.0",
"description": "The javascript module for interacting with the OpenMRS API",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./dist/index.js"
},
"./src/public": {
"types": "./src/public.ts",
"default": "./dist/public.js"
},
"./mock": {
"import": "./mock.ts",
"require": "./mock-jest.ts"
}
},
"source": true,
"scripts": {
"test": "cross-env TZ=UTC vitest run --passWithNoTests",
"test:watch": "cross-env TZ=UTC vitest watch --passWithNoTests",
"coverage": "cross-env TZ=UTC vitest run --coverage --passWithNoTests",
"build": "rimraf dist && concurrently \"swc --strip-leading-paths src -d dist\" \"tsc --project tsconfig.build.json\"",
"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 --ext ts,tsx"
},
"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": {
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"@openmrs/esm-config": "9.x",
"@openmrs/esm-error-handling": "9.x",
"@openmrs/esm-globals": "9.x",
"@openmrs/esm-navigation": "9.x"
},
"devDependencies": {
"@openmrs/esm-config": "workspace:*",
"@openmrs/esm-error-handling": "workspace:*",
"@openmrs/esm-globals": "workspace:*",
"@openmrs/esm-navigation": "workspace:*",
"@swc/cli": "0.8.0",
"@swc/core": "1.15.18",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"happy-dom": "^20.6.0",
"rimraf": "^6.0.1",
"rxjs": "^6.5.3",
"vitest": "^4.0.18"
}
}