-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
89 lines (89 loc) · 2.44 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
82
83
84
85
86
87
88
89
{
"name": "@nuxt/icon",
"packageManager": "pnpm@9.12.3",
"version": "1.7.2",
"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",
"test:playground": "pnpm -C playground run test",
"test:unit": "vitest",
"test": "pnpm run test:unit --run && pnpm run test:playground --run"
},
"dependencies": {
"@iconify/collections": "^1.0.480",
"@iconify/types": "^2.0.0",
"@iconify/utils": "^2.1.33",
"@iconify/vue": "^4.2.0-dev.1",
"@nuxt/devtools-kit": "^1.6.0",
"@nuxt/kit": "^3.14.159",
"consola": "^3.2.3",
"local-pkg": "^0.5.0",
"mlly": "^1.7.2",
"ohash": "^1.1.4",
"pathe": "^1.1.2",
"std-env": "^3.7.0",
"tinyglobby": "^0.2.10"
},
"devDependencies": {
"@iconify-json/fluent-emoji-high-contrast": "^1.2.1",
"@iconify-json/logos": "^1.2.3",
"@iconify-json/ph": "^1.2.1",
"@iconify-json/simple-icons": "^1.2.11",
"@iconify-json/solar": "^1.2.1",
"@iconify-json/uil": "^1.2.1",
"@nuxt/devtools": "^1.6.0",
"@nuxt/eslint-config": "^0.6.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.159",
"@nuxt/test-utils": "^3.14.4",
"@types/node": "^22.9.0",
"@unocss/nuxt": "^0.64.0",
"changelogen": "^0.5.7",
"eslint": "^9.14.0",
"nuxt": "^3.14.159",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"typescript": "^5.6.3",
"untyped": "^1.5.1",
"vite": "^5.4.10",
"vue-tsc": "^2.1.10"
},
"release-it": {
"git": {
"commitMessage": "chore(release): release v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
}
}
}