FMHYedit/api/package.json

25 lines
630 B
JSON
Raw Normal View History

2024-02-24 17:20:24 +00:00
{
"name": "@fmhy/api",
"version": "1.0.0",
2024-02-25 02:13:36 +00:00
"type": "module",
2024-02-24 17:20:24 +00:00
"description": "FMHY API.",
"scripts": {
"prepare": "nitropack prepare",
"dev": "nitropack dev",
"build": "nitropack build",
"preview": "node .output/server/index.mjs",
2024-02-25 02:13:36 +00:00
"types": "nitropack prepare",
"lint": "eslint --cache -f pretty routes types middleware nitro.config.ts"
2024-02-24 17:20:24 +00:00
},
"dependencies": {
"itty-fetcher": "^0.9.4",
"nitro-cors": "^0.7.0",
"nitropack": "latest"
},
2024-02-25 02:13:36 +00:00
"devDependencies": {
"@taskylizard/eslint-config": "^1.1.1",
"eslint": "^8.56.0"
},
2024-02-24 17:20:24 +00:00
"author": "taskylizard <taskylizard@fmhy.net>"
}