-
-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathpackage.json
76 lines (76 loc) · 1.85 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
{
"name": "iconoir",
"type": "module",
"version": "7.10.1",
"packageManager": "[email protected]",
"description": "Iconoir - The biggest open source icon library with tons of free icons.",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/iconoir"
},
"homepage": "https://iconoir.com",
"repository": {
"type": "git",
"url": "https://github.com/iconoir-icons/iconoir.git"
},
"keywords": [
"free",
"icons",
"library",
"svg",
"css"
],
"exports": {
"./icons/*.svg": "./icons/regular/*.svg",
"./icons/*-solid.svg": "./icons/solid/*.svg",
"./icons/regular/*.svg": "./icons/regular/*.svg",
"./icons/solid/*.svg": "./icons/solid/*.svg",
"./css/*.css": "./css/*.css"
},
"files": [
"css/*.css",
"icons"
],
"scripts": {
"build": "node ./bin/build/index.js",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"prepublish-all": "node ./bin/prepublish.js"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@atomist/yaml-updater": "^1.0.2",
"@svgr/babel-plugin-remove-jsx-attribute": "^8.0.0",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@vitejs/plugin-vue": "^5.2.1",
"esbuild": "^0.24.0",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"hast-util-from-html": "^2.0.3",
"hast-util-to-html": "^9.0.4",
"listr2": "^8.2.5",
"prettier": "^3.4.2",
"scule": "^1.3.0",
"semver": "^7.6.3",
"tinypool": "1.0.2",
"typescript": "~5.7.2",
"vite": "^6.0.4",
"vite-plugin-dts": "^4.4.0"
},
"pnpm": {
"packageExtensions": {
"react-native-svg": {
"peerDependencies": {
"@types/react": "18"
}
},
"@types/react-window": {
"dependencies": {
"@types/react": "19"
}
}
}
}
}