tech-stack-icons 1.0.1

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.
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "tech-stack-icons",
3
+ "version": "1.0.1",
4
+ "main": "dist/index.js",
5
+ "scripts": {
6
+ "test": "echo \"Error: no test specified\" && exit 1",
7
+ "build": "esbuild src/index.tsx --bundle --minify --platform=node --target=node12 --outdir=dist --external:react --external:react-dom",
8
+ "build:types": "tsc --emitDeclarationOnly --declaration"
9
+ },
10
+ "keywords": [
11
+ "tech stack icons",
12
+ "icons",
13
+ "svg",
14
+ "company logos",
15
+ "design stack",
16
+ "dev icons",
17
+ "dev logos",
18
+ "icons pack",
19
+ "icons set",
20
+ "icon stack",
21
+ "logos",
22
+ "tech icons",
23
+ "tech logos",
24
+ "tech stack"
25
+ ],
26
+ "author": "Eugenio Ciccale",
27
+ "license": "MIT",
28
+ "devDependencies": {
29
+ "@types/react": "^18.2.48",
30
+ "esbuild": "0.20.0"
31
+ },
32
+ "peerDependencies": {
33
+ "react": "^18.2.0",
34
+ "react-dom": "^18.2.0"
35
+ }
36
+ }