hippofish/packages/firefish-js/package.json

43 lines
1.2 KiB
JSON
Raw Normal View History

{
2023-07-03 00:18:30 +02:00
"name": "firefish-js",
"version": "0.0.27",
2023-07-03 00:18:30 +02:00
"description": "Firefish SDK for JavaScript",
2024-02-06 07:38:03 +01:00
"homepage": "https://firefish.dev/firefish/firefish/-/tree/develop/packages/firefish-js",
"main": "./built/index.js",
"types": "./src/index.ts",
2023-10-20 01:43:30 +02:00
"license": "MIT",
"scripts": {
2024-06-27 23:23:22 +02:00
"build": "pnpm tsc --project tsconfig.json ; pnpm tsc-alias --project tsconfig.json",
"build:debug": "pnpm tsc --sourceMap --project tsconfig.json ; pnpm tsc-alias --project tsconfig.json",
"watch": "pnpm tsc --project tsconfig.json --watch ; pnpm tsc-alias --project tsconfig.json --watch",
2024-06-28 23:45:03 +02:00
"lint": "pnpm biome check --write src",
2023-10-20 01:18:21 +02:00
"format": "pnpm biome format --write src",
"jest": "jest --coverage --detectOpenHandles",
"test": "pnpm jest && pnpm tsd"
},
"repository": {
"type": "git",
2024-02-06 07:38:03 +01:00
"url": "https://firefish.dev/firefish/firefish.git"
},
"devDependencies": {
2024-05-11 18:29:19 +02:00
"@types/jest": "29.5.12",
"@types/node": "20.14.10",
2024-05-11 18:29:19 +02:00
"jest": "29.7.0",
"jest-fetch-mock": "3.0.3",
"jest-websocket-mock": "2.5.0",
"mock-socket": "9.3.1",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
2024-06-27 23:23:22 +02:00
"tsc-alias": "1.8.10",
"tsd": "0.31.1",
"typescript": "5.5.3"
},
"files": [
2024-04-26 04:22:51 +02:00
"built", "src"
],
"dependencies": {
2024-05-11 18:29:19 +02:00
"eventemitter3": "5.0.1",
"reconnecting": "4.4.1"
}
}