-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.05 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
{
"name": "nuxt-icons",
"version": "4.0.0",
"description": "A Nuxt 4 module for easy SVG icons",
"keywords": [
"nuxt",
"nuxt4",
"icons",
"vue",
"svg"
],
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/gitFoxCode/nuxt-icons.git"
},
"homepage": "https://github.com/gitFoxCode/nuxt-icons",
"author": {
"name": "FoxCode",
"url": "https://github.com/gitFoxCode"
},
"main": "./dist/module.mjs",
"types": "./dist/module.d.mts",
"exports": {
".": {
"import": "./dist/module.mjs",
"types": "./dist/module.d.mts"
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground"
},
"peerDependencies": {
"nuxt": "^4.0.0"
},
"devDependencies": {
"@nuxt/module-builder": "^1.0.2",
"@nuxt/kit": "^4.0.3",
"@nuxt/schema": "^4.0.0",
"nuxt": "^4.0.0"
},
"publishConfig": {
"access": "public"
}
}