web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

package.json (1095B)


      1 {
      2     "name": "@radroots/http",
      3     "version": "0.0.1",
      4     "private": true,
      5     "license": "GPLv3",
      6     "type": "module",
      7     "main": "./dist/cjs/index.js",
      8     "module": "./dist/esm/index.js",
      9     "types": "./dist/types/index.d.ts",
     10     "exports": {
     11         ".": {
     12             "types": "./dist/types/index.d.ts",
     13             "import": "./dist/esm/index.js",
     14             "require": "./dist/cjs/index.js"
     15         }
     16     },
     17     "scripts": {
     18         "build:esm": "tsc -p tsconfig.esm.json",
     19         "build:cjs": "tsc -p tsconfig.cjs.json",
     20         "build": "npm run clean && npm run build:esm && npm run build:cjs",
     21         "prebuild": "npm run clean",
     22         "clean": "rimraf dist",
     23         "dev": "npm run watch",
     24         "watch": "tsc -w"
     25     },
     26     "devDependencies": {
     27         "@radroots/tsconfig": "workspace:*",
     28         "@types/node": "^22.13.1",
     29         "rimraf": "^6.0.1",
     30         "typescript": "5.8.3"
     31     },
     32     "publishConfig": {
     33         "access": "public"
     34     },
     35     "dependencies": {
     36         "@radroots/types-bindings": "workspace:*",
     37         "@radroots/utils": "workspace:*"
     38     }
     39 }