-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 847 Bytes
/
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
{
"name": "icons.binaryblazer.me",
"version": "1.0.0",
"description": "🛰️ Icons API for my portfolio",
"main": "public/js/generate.js",
"scripts": {
"app:generate": "node public/js/generate.js",
"app:remove": "node public/js/remove.js",
"format:check": "prettier --check public/js/*.js",
"format:write": "prettier --write public/js/*.js",
"lint:check": "eslint public/js/*.js",
"lint:write": "eslint --fix public/js/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": {
"name": "Jonas Franke <@binaryblazer>",
"url": "https://binaryblazer.me"
},
"type": "module",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^8.55.0",
"prettier": "3.1.0"
},
"dependencies": {
"axios": "^1.6.2",
"feather-icons": "^4.29.1"
}
}