mirror of
https://github.com/186526/handlers.js
synced 2024-10-13 00:29:43 +00:00
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "handlers.js",
|
|
"description": "Handlers.js is a unified and lightweight web application framework for multiple platforms.",
|
|
"version": "0.0.1",
|
|
"main": "index.ts",
|
|
"author": "186526 <i@186526.xyz>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/186526/handlers.js"
|
|
},
|
|
"keywords": [
|
|
"web framework",
|
|
"lightweight",
|
|
"cross-platform",
|
|
"unified"
|
|
],
|
|
"dependencies": {
|
|
"path-to-regexp": "^6.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "^3.13.0",
|
|
"@types/node": "^18.0.0",
|
|
"@webpack-cli/generators": "^2.5.0",
|
|
"prettier": "^2.7.1",
|
|
"ts-loader": "^9.3.1",
|
|
"typescript": "^4.7.4",
|
|
"webpack": "^5.73.0",
|
|
"webpack-cli": "^4.10.0"
|
|
},
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "yarn build:node && yarn build:webworker",
|
|
"build:node": "TARGET=node webpack",
|
|
"build:webworker": "TARGET=webworker webpack",
|
|
"watch": "webpack --watch"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
}
|
|
} |