forked from unplugin/unplugin-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "vite-plugin-icons",
"description": "Access thousands of icons as Vue components in Vite",
"version": "0.5.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"author": "Anthony Fu <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/antfu/vite-plugin-icons"
},
"homepage": "https://github.com/antfu/vite-plugin-icons",
"bugs": "https://github.com/antfu/vite-plugin-icons/issues",
"files": [
"dist",
"index.d.ts",
"client.d.ts"
],
"scripts": {
"dev": "npm run build -- --watch",
"example:dev": "npm -C examples/vue3 run dev",
"example:build": "npm -C examples/vue3 run build",
"build": "tsup src/index.ts --dts --format cjs,esm",
"prepublishOnly": "npm run build",
"release": "npx bumpp --commit --tag && npm publish && git push"
},
"dependencies": {
"@iconify/json-tools": "^1.0.10",
"vue-template-es2015-compiler": "^1.9.1"
},
"peerDependencies": {
"@iconify/json": "*",
"@vue/compiler-sfc": "^3.0.2",
"vue-template-compiler": "^2.6.12"
},
"devDependencies": {
"@antfu/eslint-config": "^0.6.2",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@vue/compiler-sfc": "^3.0.11",
"eslint": "^7.24.0",
"rollup": "^2.45.0",
"tsup": "^4.8.21",
"typescript": "^4.2.4",
"vite": "^2.1.5",
"vue": "^3.0.11",
"vue-template-compiler": "^2.6.12",
"vue-template-es2015-compiler": "^1.9.1"
}
}