forked from nuxt/icon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.15 KB
/
package.json
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
{
"name": "@nuxt/icon",
"packageManager": "pnpm@9.6.0",
"version": "1.4.0",
"license": "MIT",
"type": "module",
"repository": "nuxt/icon",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./module": {
"types": "./dist/module.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./*": "./dist/*"
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "pnpm build",
"build": "nuxt-module-build prepare && nuxt-module-build build",
"play": "nuxi dev playground",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"prepublishOnly": "pnpm lint",
"release": "release-it"
},
"dependencies": {
"@iconify/collections": "^1.0.443",
"@iconify/types": "^2.0.0",
"@iconify/utils": "^2.1.25",
"@iconify/vue": "4.1.3-beta.1",
"@nuxt/devtools-kit": "^1.3.9",
"@nuxt/kit": "^3.12.4",
"consola": "^3.2.3",
"fast-glob": "^3.3.2",
"local-pkg": "^0.5.0",
"pathe": "^1.1.2"
},
"devDependencies": {
"@iconify-json/fluent-emoji-high-contrast": "^1.1.15",
"@iconify-json/logos": "^1.1.43",
"@iconify-json/ph": "^1.1.13",
"@iconify-json/simple-icons": "^1.1.110",
"@iconify-json/uil": "^1.1.8",
"@nuxt/devtools": "^1.3.9",
"@nuxt/eslint-config": "^0.4.0",
"@nuxt/module-builder": "^0.8.1",
"@nuxt/schema": "^3.12.4",
"@nuxt/test-utils": "^3.14.0",
"@types/node": "^22.0.0",
"@unocss/nuxt": "^0.61.6",
"changelogen": "^0.5.5",
"eslint": "9.0.0",
"nuxt": "^3.12.4",
"release-it": "^17.6.0",
"typescript": "^5.5.4",
"untyped": "^1.4.2",
"vite": "^5.3.5",
"vue-tsc": "^2.0.29"
},
"release-it": {
"git": {
"commitMessage": "chore(release): release v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
}
}
}