-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
{
"name": "dhc-utils",
"version": "0.1.0",
"description": "A library of utility functions used inside the DHC projects.",
"main": "index.js",
"type": "module",
"exports": {
".": {
"import": {
"default": "./dist/dhc-utils.es.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/dhc-utils.umd.js",
"types": "./dist/index.d.ts"
}
}
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "vite build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/DH-Center-Tuebingen/dhc-utils.git"
},
"keywords": [
"dhc",
"utils",
"utilities",
"helper",
"helpers"
],
"author": "Severin Opel, Vinzenz Rosenkranz",
"license": "MIT",
"bugs": {
"url": "https://github.com/DH-Center-Tuebingen/dhc-utils/issues"
},
"homepage": "https://github.com/DH-Center-Tuebingen/dhc-utils#readme",
"dependencies": {
"dayjs": "^1.11.13",
"vite-dts": "^1.0.4"
},
"devDependencies": {
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.2"
}
}