-
-
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) · 1.99 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.99 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
{
"main": "dist/index.js",
"name": "importmap-manager",
"type": "module",
"version": "2.0.0",
"description": "A modern UI for managing importmap-overrides with an enhanced user experience.",
"author": "Daniel David Díaz González <ddavid930826@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ddavid93/importmap-manager"
},
"scripts": {
"analyze": "npx vite-bundle-visualizer",
"build": "run-p type-check build-only",
"build-only": "vite build",
"build-only-watch": "vite build --watch",
"dev": "vite",
"eslint": "eslint ./src",
"eslint-fix": "eslint ./src --fix",
"format": "prettier --write src/",
"install-packages": "pnpm install",
"prepublishOnly": "npm run build-only",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit --composite false",
"update-packages": "pnpm upgrade --latest"
},
"dependencies": {
"@vueuse/components": "14.1.0",
"@vueuse/core": "14.1.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-vue-next": "0.562.0",
"reka-ui": "2.7.0",
"tailwind-merge": "3.4.0",
"tailwindcss": "3.4.19",
"tailwindcss-animate": "1.0.7",
"vue": "3.5.27"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@rushstack/eslint-patch": "1.15.0",
"@tsconfig/node20": "20.1.8",
"@types/node": "25.0.10",
"@vitejs/plugin-vue": "6.0.3",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/eslint-config-typescript": "14.6.0",
"@vue/tsconfig": "0.8.1",
"autoprefixer": "10.4.23",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-vue": "10.7.0",
"npm-run-all2": "8.0.4",
"postcss": "8.5.6",
"prettier": "3.8.1",
"terser": "5.46.0",
"typescript": "5.9.3",
"typescript-eslint": "8.53.1",
"vite": "7.3.1",
"vue-tsc": "3.2.3"
},
"files": [
"README.md",
"dist",
"index.js"
]
}