forked from iconify/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 864 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
31
32
33
34
35
36
37
{
"name": "@iconify/api",
"description": "Iconify API",
"author": "Vjacheslav Trushkin",
"license": "MIT",
"private": true,
"version": "3.0.0-beta.1",
"bugs": "https://github.com/iconify/api/issues",
"homepage": "https://github.com/iconify/api",
"repository": {
"type": "git",
"url": "https://github.com/iconify/api.git"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.15.0"
},
"scripts": {
"build": "tsc -b",
"test": "vitest --config vitest.config.mjs",
"start": "node --expose-gc lib/index.js"
},
"dependencies": {
"@fastify/formbody": "^7.3.0",
"@iconify/tools": "^2.1.2",
"@iconify/types": "^2.0.0",
"@iconify/utils": "^2.0.2",
"dotenv": "^16.0.3",
"fastify": "^4.10.2"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"typescript": "^4.9.3",
"vitest": "^0.25.2"
}
}