-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 4.33 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 4.33 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@opendex-origon/icons",
"version": "3.0.1-beta.0",
"description": "Biblioteca de iconos SVG para React con tipado TypeScript - Solo para proyectos que se integren con Opendex. 44,260 iconos únicos organizados en 29 categorías temáticas, incluyendo logo personalizado.",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Opendex Corporation",
"email": "support@opendex.com",
"url": "https://origon.opendex.dev"
},
"homepage": "https://github.com/Origonlabs/Icons#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Origonlabs/Icons.git"
},
"bugs": {
"url": "https://github.com/Origonlabs/Icons/issues"
},
"funding": {
"type": "individual",
"url": "https://origon.opendex.dev/support"
},
"sideEffects": false,
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./icons": {
"types": "./dist/icons/index.d.ts",
"import": "./dist/icons/index.js",
"require": "./dist/icons/index.js"
},
"./icons/*": {
"types": "./dist/icons/*.d.ts",
"import": "./dist/icons/*.js",
"require": "./dist/icons/*.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"icons/*": [
"dist/icons/*"
],
"icons": [
"dist/icons/index.d.ts"
]
}
},
"scripts": {
"clean": "rimraf dist",
"build": "rimraf dist && tsup",
"dev": "tsc -p tsconfig.build.json --watch",
"generate": "node scripts/generate-icons.js",
"prepack": "npm run clean && npm run build",
"test": "echo \"No tests specified\" && exit 0",
"lint": "eslint src --ext .ts,.tsx --fix",
"lint:check": "eslint src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"type-check": "node --max-old-space-size=8192 ./node_modules/.bin/tsc --noEmit",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"release": "semantic-release",
"commit": "git-cz",
"diagnose": "node scripts/diagnose-project.js",
"release:patch": "node scripts/update-version.js patch",
"release:minor": "node scripts/update-version.js minor",
"release:major": "node scripts/update-version.js major",
"publish:patch": "npm run release:patch && git push origin main && git push --tags && npm publish",
"publish:minor": "npm run release:minor && git push origin main && git push --tags && npm publish",
"publish:major": "npm run release:major && git push origin main && git push --tags && npm publish",
"publish:manual:patch": "node scripts/publish-manual.js patch",
"publish:manual:minor": "node scripts/publish-manual.js minor",
"publish:manual:major": "node scripts/publish-manual.js major"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.879.0",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^9.0.0",
"@semantic-release/npm": "^10.0.0",
"@types/node": "^20.12.12",
"@types/react": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"change-case": "^5.4.4",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"fast-glob": "^3.3.2",
"husky": "^8.0.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"semantic-release": "^22.0.0",
"svgo": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "5.9.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"keywords": [
"icons",
"react",
"typescript",
"svg",
"opendex",
"opendex-corporation",
"icon-library",
"ui-icons",
"react-icons",
"svg-icons",
"typescript-icons",
"design-system",
"ui-components",
"frontend",
"web-development",
"react-components",
"icon-pack",
"vector-icons",
"scalable-icons"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}