Files
isotransport/package.json
T

64 lines
1.4 KiB
JSON
Raw Normal View History

2023-01-06 10:36:54 +01:00
{
2023-07-10 02:41:24 +02:00
"name": "@push.rocks/isotransport",
2026-05-02 10:25:22 +00:00
"version": "1.1.0",
2023-01-06 10:36:54 +01:00
"private": false,
"description": "a bi-directional, multiplatform, best-effort transport",
"exports": {
".": "./dist_ts/index.js"
},
2023-01-06 10:36:54 +01:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2023-01-06 10:36:54 +01:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
2023-01-06 10:36:54 +01:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1"
2023-01-06 10:36:54 +01:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2023-01-06 10:36:54 +01:00
"npmextra.json",
"readme.md"
2023-07-10 02:41:24 +02:00
],
"dependencies": {
"ws": "^8.20.0"
2024-04-14 13:37:19 +02:00
},
"keywords": [
"bi-directional communication",
"multiplatform",
"best-effort transport",
"TypeScript",
"node.js",
"testing",
"software development",
"git",
"npm package",
"open source"
2024-05-29 14:11:07 +02:00
],
"homepage": "https://code.foss.global/push.rocks/isotransport",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/isotransport.git"
}
}