-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 1.47 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
{
"name": "@ssecd/ihs",
"displayName": "IHS",
"version": "0.1.4",
"description": "Indonesia Health Service Helper",
"repository": {
"type": "git",
"url": "https://github.com/ssecd/ihs"
},
"homepage": "https://github.com/ssecd/ihs",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"test": "vitest",
"build": "rollup -c && dts-buddy dist/ihs.d.ts -m @ssecd/ihs:src/ihs.js",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"release": "changeset publish"
},
"keywords": [
"ihs",
"SatuSehat",
"simrs",
"kemkes",
"fasyankes"
],
"author": {
"name": "Habib Mustofa",
"email": "hm.dev7@gmail.com",
"url": "https://github.com/mustofa-id"
},
"license": "MIT",
"module": "./dist/ihs.js",
"types": "./dist/ihs.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/ihs.d.ts",
"import": "./dist/ihs.js"
}
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.4.5",
"dts-buddy": "^0.4.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"rollup": "^4.18.0",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@types/fhir": "^0.0.40"
},
"packageManager": "pnpm@8.6.1",
"engines": {
"pnpm": "^8.0.0"
}
}