@itznotabug/appexpress
Version:
An `express.js` like framework for Appwrite Functions, enabling super-easy navigation!
58 lines • 1.41 kB
JSON
{
"name": "@itznotabug/appexpress",
"version": "1.8.0",
"description": "An `express.js` like framework for Appwrite Functions, enabling super-easy navigation!",
"author": "@itznotabug",
"type": "module",
"main": "dist/appexpress.js",
"types": "dist/appexpress.d.ts",
"exports": {
".": {
"types": "./dist/appexpress.d.ts",
"import": "./dist/appexpress.js"
}
},
"files": [
"dist",
"README.md"
],
"license": "Apache-2.0",
"prettier": {
"tabWidth": 4,
"singleQuote": true
},
"homepage": "https://github.com/itznotabug/appexpress",
"repository": {
"type": "git",
"url": "https://github.com/itznotabug/appexpress.git"
},
"dependencies": {
"mime-types": "3.0.1"
},
"devDependencies": {
"@itznotabug/appexpress-nocookies": "^0.0.4",
"@types/mime-types": "^3.0.1",
"@types/node": "^24.1.0",
"ejs": "3.1.10",
"express-handlebars": "8.0.3",
"prettier": "3.6.2",
"pug": "3.0.3",
"showdown": "2.1.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"keywords": [
"appwrite",
"appwrite-functions",
"appwrite-functions-navigation"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"lint": "prettier . --check",
"format": "prettier . --write",
"type-check": "tsc --noEmit",
"tests": "cd tests && node test.js"
}
}