-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
113 lines (113 loc) · 2.82 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
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@icons-pack/react-simple-icons",
"version": "10.1.0",
"description": "This package provides the Simple Icons packaged as a set of React components.",
"keywords": [
"react",
"simple-icons",
"brands",
"icons",
"svg",
"inline",
"design",
"component",
"codea",
"wootsbot"
],
"homepage": "https://github.com/icons-pack/react-simple-icons#readme",
"bugs": {
"url": "https://github.com/icons-pack/react-simple-icons/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icons-pack/react-simple-icons.git",
"directory": "react-simple-icons"
},
"packageManager": "[email protected]",
"license": "MIT",
"author": "Jorge Luis Calleja <[email protected]>",
"main": "./index.cjs",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.cjs"
},
"./package.json": "./package.json",
"./icons/*": "./icons/*"
},
"sideEffects": false,
"files": [
"./src/icons",
"icons",
"index.d.ts",
"types.d.ts",
"*.d.ts",
"*.js",
"*.mjs",
"*.cjs"
],
"scripts": {
"clean": "rimraf -rf icons base.cjs base.d.ts base.mjs index.cjs index.d.ts index.mjs types.d.ts",
"build": "pnpm clean && vite build",
"lint:types": "tsc --noEmit",
"clean:icons": "rimraf -rf ./src/icons/**",
"clean:files": "rimraf -rf ./src/index.ts",
"generate:icons": "pnpm clean:icons && pnpm clean:files && node scripts/generate-icons",
"prettier:format": "prettier --config .prettierrc \"./**/*.+(js|json|ts|tsx)\" --write",
"bundlesize": "bundlesize",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"lint-staged": {
"./**/*.+(js|json)": [
"prettier --write"
]
},
"bundlesize": [
{
"path": "./index.cjs",
"maxSize": "70 kB"
},
{
"path": "./index.mjs",
"maxSize": "70 kB"
},
{
"path": "./index.d.ts",
"maxSize": "70 kB"
}
],
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "22.3.0",
"@types/react": "^18",
"@vitejs/plugin-react": "4.3.1",
"bundlesize": "0.18.2",
"husky": "9.1.4",
"lint-staged": "15.2.9",
"prettier": "3.3.3",
"prettier-eslint": "16.3.0",
"react": "^18",
"rimraf": "6.0.1",
"signale": "1.4.0",
"simple-icons": "13.14.1",
"turbo": "2.0.14",
"typescript": "5.5.4",
"uppercamelcase": "3.0.0",
"vite": "5.4.1",
"vite-plugin-dts": "4.0.3"
},
"peerDependencies": {
"react": "^16.13 || ^17 || ^18"
},
"publishConfig": {
"access": "public"
}
}