-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.09 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.09 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
{
"name": "cdh-vue-lib",
"version": "0.6.0",
"type": "module",
"author": "Humanities IT Portal development",
"license": "EUPL-1.2",
"files": [
"dist",
"src"
],
"module": "./dist/cdh-vue-lib.es.js",
"exports": {
".": {
"import": [
"./dist/cdh-vue-lib.es.js",
"./dist/cdh-vue-lib.d.ts"
]
},
"./components": {
"import": "./dist/cdh-vue-lib.components.es.js"
},
"./composables": {
"import": "./dist/cdh-vue-lib.composables.es.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"types": "./dist/cdh-vue-lib.d.ts",
"scripts": {
"dev": "vite build --watch & yarn types --watch --preserveWatchOutput",
"build": "vite build && yarn types",
"types": "vue-tsc --emitDeclarationOnly"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"uu-bootstrap": "git+https://github.com/UtrechtUniversity/UU-Bootstrap.git#v1.5.0-alpha.1",
"uuid": "^9.0.0",
"vue-i18n": "^11.1.10"
},
"peerDependencies": {
"vue": "^3.3.13"
},
"devDependencies": {
"@babel/types": "^7.22.5",
"@intlify/unplugin-vue-i18n": "^1.4.0",
"@popperjs/core": "^2.11.8",
"@types/bootstrap": "^5.2.6",
"@types/node": "^20.2.5",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitejs/plugin-vue": "^4.2.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.16.1",
"prettier": "^3.0.1",
"sass": "^1.64.2",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-eslint": "^1.8.1",
"vue": "^3.3.13",
"vue-tsc": "^1.4.2"
}
}