mirror of https://github.com/iconify/api.git
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@iconify/api",
|
|
"description": "Iconify API",
|
|
"author": "Vjacheslav Trushkin",
|
|
"license": "MIT",
|
|
"version": "3.2.0",
|
|
"type": "module",
|
|
"bugs": "https://github.com/iconify/api/issues",
|
|
"homepage": "https://github.com/iconify/api",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/iconify/api.git"
|
|
},
|
|
"packageManager": "npm@11.6.4",
|
|
"engines": {
|
|
"node": ">=22.20.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"test": "vitest --config vitest.config.mjs",
|
|
"start": "node --expose-gc lib/index.js",
|
|
"docker:build": "./docker.sh",
|
|
"docker:start": "docker run -d -p 3000:3000 iconify/api",
|
|
"docker:stop": "docker ps -q --filter ancestor=iconify/api | xargs -r docker stop",
|
|
"docker:cleanup": "docker ps -q -a --filter ancestor=iconify/api | xargs -r docker rm",
|
|
"docker:publish": "docker push iconify/api"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/formbody": "^8.0.2",
|
|
"@iconify/tools": "^5.0.0",
|
|
"@iconify/types": "^2.0.0",
|
|
"@iconify/utils": "^3.1.0",
|
|
"dotenv": "^17.2.3",
|
|
"fastify": "^5.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.10.1",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.14"
|
|
}
|
|
}
|