-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.55 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "devicons-react",
"version": "1.5.0-beta.3",
"description": "Devicons React is a collection of icons that symbolize programming languages, design tools, and development software.",
"keywords": [
"programming",
"icons",
"react",
"typescript"
],
"license": "MIT",
"author": {
"name": "Mohammad Abu Mattar",
"email": "[email protected]",
"url": "https://mkabumattar.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/MKAbuMattar/devicons-react.git"
},
"bugs": {
"url": "https://github.com/MKAbuMattar/devicons-react/issues"
},
"homepage": "https://devicons-react.vercel.app/",
"scripts": {
"clean:devicon": "rm -rf devicon",
"clean:svg": "rm -rf svg",
"clean:icons": "rm -rf icons",
"clean:svg:devicon": "rm -rf ./svg/devicon-line-wordmark.svg ./svg/devicon-line.svg ./svg/devicon-original-wordmark.svg ./svg/devicon-original.svg ./svg/devicon-plain-wordmark.svg ./svg/devicon-plain.svg",
"clean:lib": "rm -rf lib",
"copy:svg:devicons-react": "cp ./src/assets/devicons-react-original.svg ./svg",
"build:clone:master": "npm run clean:devicon && tsx src/config/gitclone.config.ts --master",
"build:clone:develop": "npm run clean:devicon && tsx src/config/gitclone.config.ts --develop",
"build:svg:generate": "npm run clean:svg && tsx src/generate/svg.generate.ts && npm run clean:svg:devicon && npm run copy:svg:devicons-react && npm run clean:icons && npm run svg:optmize",
"svg:optmize": "svgo --config svgo.config.cjs -f svg/ -o icons/",
"build:jsx:script": "tsx src/script/jsx.script.ts",
"build:data": "tsx src/data/generate.data.ts",
"build:lib": "npm run clean:lib && babel build --out-dir lib --copy-files",
"build:dev": "npm run build:clone:develop && npm run build:svg:generate && npm run build:jsx:script && npm run build:data && npm run build:lib",
"build:prod": "npm run build:clone:master && npm run build:svg:generate && npm run build:jsx:script && npm run build:data && npm run build:lib",
"publish:lib:latest": "npm publish",
"publish:lib:beta": "npm publish --tag beta",
"publish:lib:canary": "npm publish --tag canary",
"lint": "biome check ./src",
"lint:fix": "biome check ./src --fix",
"fmt": "biome format ./src",
"fmt:fix": "biome format --write ./src"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/plugin-syntax-jsx": "7.25.9",
"@babel/plugin-transform-parameters": "7.25.9",
"@babel/preset-react": "7.26.3",
"@biomejs/biome": "1.9.4",
"@types/fs-plus": "3.0.6",
"@types/jsdom": "21.1.7",
"@types/node": "22.10.3",
"@types/react": "19.0.2",
"babel-preset-minify": "0.5.2",
"fs-plus": "3.1.1",
"jsdom": "25.0.1",
"react": "19.0.0",
"recursive-directory": "1.2.3",
"svg-to-jsx": "1.0.4",
"svgo": "3.3.2",
"svgson": "5.3.1",
"tsx": "4.19.2",
"typescript": "5.7.2"
},
"sideEffects": false,
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.js",
"types": "./index.d.ts"
},
"./lib/icons/*": {
"require": "./lib/icons/*.js",
"import": "./lib/icons/*.js",
"types": "./lib/icons/*.d.ts"
},
"./icons/*": {
"require": "./lib/icons/*.js",
"import": "./lib/icons/*.js",
"types": "./lib/icons/*.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"/lib",
"/index.d.ts"
],
"support": {
"backing": {
"npm-funding": true
}
}
}