developer-icons 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +62 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # Xandemon Icons
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "developer-icons",
3
+ "description": "Ready-to-use high quality vector icons for developers and designers",
4
+ "version": "1.0.0",
5
+ "type": "module",
6
+ "homepage": "https://github.com/xandemon/developer-icons",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/xandemon/developer-icons",
10
+ "directory": ""
11
+ },
12
+ "author": "xandemon",
13
+ "keywords": [
14
+ "developer icons",
15
+ "tech stack icons",
16
+ "programming icons",
17
+ "coding icons",
18
+ "colorful tech icons",
19
+ "tech icons",
20
+ "programming language icons",
21
+ "icons",
22
+ "vector icons",
23
+ "svg",
24
+ "react icons"
25
+ ],
26
+ "main": "dist/main.js",
27
+ "types": "dist/main.d.ts",
28
+ "files": [
29
+ "dist"
30
+ ],
31
+ "scripts": {
32
+ "dev": "vite",
33
+ "build": "tsx ./lib/scripts/build.ts && tsc --p ./tsconfig-build.json && vite build",
34
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
35
+ "preview": "vite preview",
36
+ "prePublishOnly": "npm run build"
37
+ },
38
+ "peerDependencies": {
39
+ "react": "^18.2.0",
40
+ "react-dom": "^18.2.0"
41
+ },
42
+ "devDependencies": {
43
+ "@types/node": "^20.12.7",
44
+ "@types/react": "^18.2.66",
45
+ "@types/react-dom": "^18.2.22",
46
+ "@typescript-eslint/eslint-plugin": "^7.2.0",
47
+ "@typescript-eslint/parser": "^7.2.0",
48
+ "@vitejs/plugin-react": "^4.2.1",
49
+ "eslint": "^8.57.0",
50
+ "eslint-plugin-react-hooks": "^4.6.0",
51
+ "eslint-plugin-react-refresh": "^0.4.6",
52
+ "react": "^18.2.0",
53
+ "react-dom": "^18.2.0",
54
+ "svgo": "^3.2.0",
55
+ "svgson": "^5.3.1",
56
+ "tsx": "^4.8.2",
57
+ "typescript": "^5.2.2",
58
+ "vite": "^5.2.0",
59
+ "vite-plugin-dts": "^3.9.0",
60
+ "vite-plugin-lib-inject-css": "^2.0.1"
61
+ }
62
+ }