-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.05 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
{
"name": "justd-icons",
"version": "1.4.12",
"description": "A library of beautifully crafted react icons, perfect for enhancing the visual appeal and user experience of your web applications.",
"author": "Irsyad A. Panjaitan",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "npx prettier --write .",
"prebuild": "rimraf src && rimraf dist",
"build": "npm run svgr && node scripts/add-custom-attr.js && node scripts/generate-declarations.js && rollup -c",
"svgr": "svgr --icon --replace-attr-values '#000=none' --replace-attr-values '1em={24}' -d src -- ../svg",
"pr": "npm run build && git commit -a",
"release": "release-it"
},
"files": [
"dist"
],
"keywords": [
"icon",
"react",
"irsyadadl",
"parsinta",
"irsyad",
"react-icons",
"paranoid"
],
"repository": {
"type": "git",
"url": "git+https://github.com/justdlabs/packages/icons.git"
},
"homepage": "https://paranoid.irsyad.co",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@commitlint/cli": "^18.4.3",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-typescript": "^11.1.6",
"@svgr/cli": "^8.1.0",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"release-it": "^17.0.0",
"rimraf": "^5.0.9",
"rollup": "^4.6.1",
"rollup-plugin-filesize": "^10.0.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": "conventionalcommits",
"types": {
"feat": {
"description": "Add new features"
},
"icon": {
"description": "Add new icons"
},
"fix": {
"description": "Fix bugs"
},
"pubslished": {
"description": "Published new version"
},
"chore": {
"description": "Build process or auxiliary tool changes"
},
"docs": {
"description": "Documentation only changes"
},
"style": {
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)"
},
"refactor": {
"description": "A code change that neither fixes a bug nor adds a feature"
},
"perf": {
"description": "A code change that improves performance"
},
"test": {
"description": "Adding missing tests"
}
}
}
}
},
"peerDependencies": {
"react": "^16 || ^17 || ^18 || ^19"
},
"dependencies": {
"@babel/runtime": "^7.24.7"
}
}