UNPKG

@udarapremadasa/iwa-web-server

Version:

A TypeScript library for creating web servers compatible with IWA (Isolated Web Apps) using the Direct Sockets API

71 lines (70 loc) 1.96 kB
{ "name": "@udarapremadasa/iwa-web-server", "version": "1.1.0", "description": "A TypeScript library for creating web servers compatible with IWA (Isolated Web Apps) using the Direct Sockets API", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js" } }, "files": [ "dist/**/*", "README.md", "LICENSE", "CHANGELOG.md" ], "scripts": { "build": "tsc --noEmit", "build:prod": "tsc", "build:watch": "tsc --watch", "dev": "ts-node src/index.ts", "test": "echo 'Tests not implemented yet'", "test:watch": "echo 'Tests not implemented yet'", "test:coverage": "echo 'Tests not implemented yet'", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build:prod", "lint": "echo 'Add linting later'", "format": "echo 'Add formatting later'", "release:patch": "npm version patch && npm publish --access public", "release:minor": "npm version minor && npm publish --access public", "release:major": "npm version major && npm publish --access public" }, "keywords": [ "iwa", "isolated-web-apps", "web-server", "typescript", "direct-sockets", "websocket", "http-server" ], "author": "Udara Premadasa", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/udarapremadasa/iwa-web-server.git" }, "homepage": "https://github.com/udarapremadasa/iwa-web-server#readme", "bugs": { "url": "https://github.com/udarapremadasa/iwa-web-server/issues" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=16.0.0" }, "type": "module", "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^24.0.3", "jest": "^30.0.1", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "typescript": "^5.8.3" } }