-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "vue-infinity",
"version": "0.8.6",
"main": "dist/vue-infinity.umd.js",
"module": "dist/vue-infinity.es.js",
"type": "module",
"style": "dist/vue-infinity.css",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-infinity.es.js",
"require": "./dist/vue-infinity.umd.js"
},
"./style.css": "./dist/vue-infinity.css"
},
"types": "dist/index.d.ts",
"scripts": {
"dev": "cd playground && vite dev",
"test": "vitest --ui",
"build": "vite build",
"playground": "cd playground && vite dev"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"description": "A collection of composables and components for Vue 3 to improve app performance and memory usage.",
"homepage": "https://tewolde.co/vueInfinity/",
"repository": {
"type": "git",
"url": "git+https://github.com/isaact/vue-infinity.git"
},
"dependencies": {
"@vueuse/components": "^13.1.0"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/ui": "^3.1.1",
"happy-dom": "^20.0.10",
"typescript": "^5.8.3",
"vite": "^6.3.6",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.1.1",
"vue": "^3.5.13"
}
}