-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 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
{
"name": "@eka-care/templar",
"version": "1.0.2",
"description": "Contains the logic to beautify data to PDF HTML",
"main": "dist/Templar.js",
"types": "dist/Templar.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"dev": "vite build --watch",
"type-check": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"pdf",
"template",
"prescription",
"html"
],
"author": "Eka Care",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21",
"moment": "2.29.4"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react": "^4.0.0",
"typescript": "^4.9.0",
"vite": "^4.4.0",
"vite-plugin-dts": "^3.5.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"exports": {
".": {
"types": "./dist/Templar.d.ts",
"default": "./dist/Templar.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/eka-care/Templar.git"
},
"bugs": {
"url": "https://github.com/eka-care/Templar/issues"
},
"homepage": "https://github.com/eka-care/Templar#readme"
}