123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "xrates-updater",
- "version": "1.0.0",
- "description": "",
- "main": "src/index.ts",
- "scripts": {
- "build": "tsc",
- "prettier": "prettier --write .",
- "lint": "prettier --check . && eslint . --ext .ts && cspell '**/*' ",
- "prebuild": "npm run clean",
- "clean": "rm -rf ./build"
- },
- "repository": {
- "type": "git",
- "url": "git@ssh.git.ac:kotoyuuko/xrates-updater.git"
- },
- "author": "kotoyuuko",
- "license": "WTFPL",
- "dependencies": {
- "@notionhq/client": "^3.1.3",
- "axios": "^1.9.0",
- "dotenv": "^16.5.0"
- },
- "devDependencies": {
- "@eslint/eslintrc": "^3.3.1",
- "@eslint/js": "^9.27.0",
- "@types/node": "^22.15.24",
- "@typescript-eslint/eslint-plugin": "^8.33.0",
- "@typescript-eslint/parser": "^8.33.0",
- "eslint": "^9.27.0",
- "globals": "^16.2.0",
- "prettier": "^3.5.3",
- "ts-node": "^10.9.2",
- "typescript": "^5.8.3"
- }
- }
|