mirror of https://github.com/iconify/api.git
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@iconify/api",
|
|
"description": "Iconify API",
|
|
"author": "Vjacheslav Trushkin",
|
|
"license": "MIT",
|
|
"version": "3.1.0-beta.1",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"tag": "next"
|
|
},
|
|
"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@10.3.0",
|
|
"engines": {
|
|
"node": ">=16.15.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": "^7.4.0",
|
|
"@iconify/tools": "^4.0.0",
|
|
"@iconify/types": "^2.0.0",
|
|
"@iconify/utils": "^2.1.15",
|
|
"dotenv": "^16.3.1",
|
|
"fastify": "^4.25.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.11",
|
|
"@types/node": "^20.11.4",
|
|
"typescript": "^5.3.3",
|
|
"vitest": "^1.2.0"
|
|
}
|
|
}
|