-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.63 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.63 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "hero-vue",
"version": "1.2.3",
"type": "module",
"description": "Library of (VUE) components to be used in HERO JavaScript apps",
"author": {
"name": "Matthijs van der Burgh",
"email": "MatthijsBurgh@outlook.com"
},
"scripts": {
"dev": "vite",
"prebuild": "npm run lint",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"test:unit": "vitest",
"test": "npm run test:unit",
"lint": "eslint --ext .js,.ts,.vue build dev src tests",
"major": "npm version major",
"minor": "npm version minor",
"patch": "npm version patch",
"version": "npm run build",
"postversion": "git push -u && git push --tags"
},
"main": "dist/hero-vue.ssr.js",
"module": "dist/hero-vue.esm.js",
"browser": "dist/hero-vue.esm.js",
"unpkg": "dist/hero-vue.min.js",
"types": "dist/entry.d.ts",
"files": [
"dist/*",
"src/**/*.vue",
"src/**/*.ts"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/vue-fontawesome": "^3.0.0",
"bootstrap": "^5.3.0",
"roslib": "^2.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.0.0",
"@sinonjs/fake-timers": "^15.1.0",
"@types/node": "^25.0.3",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-vue": "^6.0.3",
"@vitest/ui": "^4.0.16",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/test-utils": "^2.4.0",
"auto-ros": "^2.2.0",
"chai": "^6.2.2",
"cross-env": "^10.1.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^10.0.0",
"globals": "^17.0.0",
"happy-dom": "^20.1.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"rollup": "^4.0.0",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.97.2",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.52.0",
"vite": "^8.0.0",
"vitest": "^4.0.16",
"vue": "^3.5.0",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.2.2"
},
"peerDependencies": {
"vue": "^3.5.0"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/tue-robotics/hero-vue.git"
}
}