-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.84 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
{
"name": "nuxt-feather-icons",
"version": "1.4.2",
"description": "High-performance Feather Icons for Nuxt with full Tree-Shaking and SSR support.",
"author": "4sllan (https://github.com/4sllan)",
"homepage": "https://4sllan.github.io/nuxt-feather-icons/",
"repository": {
"type": "git",
"url": "git+https://github.com/4sllan/nuxt-feather-icons.git"
},
"bugs": {
"url": "https://github.com/4sllan/nuxt-feather-icons/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/4sllan"
}
],
"keywords": [
"nuxt",
"nuxt-module",
"feather-icons",
"vue",
"icons",
"tree-shaking",
"ssr"
],
"license": "MIT",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs",
"default": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"build": "nuxi build",
"lint": "eslint . --fix",
"typecheck": "nuxi prepare playground && tsc --noEmit",
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build --stub",
"test": "vitest run",
"test:watch": "vitest watch"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/kit": "^4.3.1",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.3.1",
"@types/node": "^25.3.5",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.6.2",
"eslint": "^10.0.3",
"jsdom": "^28.1.0",
"nuxt": "^4.3.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"vue": "^3.5.29",
"vue-tsc": "^3.2.5"
},
"dependencies": {
"feather-icons": "^4.29.2",
"lucide": "^0.577.0"
}
}