-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.69 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
{
"name": "antasena-icons",
"version": "0.0.6",
"description": "Antasena icons is a comprehensive library of React icons designed to help developers easily add scalable vector icons to their projects.",
"keywords": [
"react",
"icons",
"svg"
],
"homepage": "https://github.com/tranityproject/antasena-icons",
"bugs": {
"url": "https://github.com/tranityproject/antasena-icons/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/tranityproject/antasena-icons.git"
},
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Tranity <[email protected]> (https://tranity.id)",
"license": "MIT",
"private": false,
"scripts": {
"build": "yarn run build:optimize && yarn run build:generate && yarn run build:release",
"build:optimize": "rimraf ./optimized & node scripts/optimize.js",
"build:generate": "rimraf ./generated && node scripts/build.js",
"build:release": "tsup",
"check-types": "tsc --noEmit",
"lint": "eslint \"generated/**/*.ts*\"",
"format": "prettier --write \"generated/**/*.ts*\"",
"clean": "rimraf node_modules && rimraf dist && rimraf generated && rimraf optimized"
},
"files": [
"dist"
],
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@svgr/cli": "^6.5.1",
"@svgr/core": "^6.5.1",
"@types/react": "^18.0.31",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"camelcase": "^7.0.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"svgo": "^3.0.2",
"tsup": "^6.7.0",
"typescript": "^5.0.2"
}
}