firefish/packages/firefish-js/package.json

41 lines
1.2 KiB
JSON
Raw Normal View History

2023-07-20 04:17:05 +09:00
{
"name": "firefish-js",
2023-10-29 20:09:26 +09:00
"version": "0.0.27",
2023-07-20 04:17:05 +09:00
"description": "Firefish SDK for JavaScript",
2023-10-29 20:09:26 +09:00
"homepage": "https://git.joinfirefish.org/firefish/firefish/-/tree/develop/packages/firefish-js",
2023-07-20 04:17:05 +09:00
"main": "./built/index.js",
"types": "./built/index.d.ts",
2023-10-29 20:09:26 +09:00
"license": "MIT",
2023-07-20 04:17:05 +09:00
"scripts": {
"build": "pnpm swc src --out-dir built --source-maps false --copy-files --strip-leading-paths",
2023-10-29 20:09:26 +09:00
"build:types": "pnpm tsc --emitDeclarationOnly",
"build:debug": "pnpm swc src --out-dir built --source-maps true --copy-files --strip-leading-paths",
"watch": "pnpm swc src --out-dir built --source-maps true --copy-files --strip-leading-paths --watch",
2023-10-29 20:09:26 +09:00
"lint": "pnpm biome check --apply src",
"format": "pnpm biome format --write src"
2023-07-20 04:17:05 +09:00
},
"repository": {
"type": "git",
2023-11-09 21:25:55 +09:00
"url": "https://code.naskya.net/naskya/firefish"
2023-07-20 04:17:05 +09:00
},
"devDependencies": {
"@swc/cli": "0.3.10",
"@swc/core": "1.4.2",
2023-11-06 10:19:50 +09:00
"@swc/types": "0.1.5",
"@types/node": "20.11.21",
2023-12-29 05:52:50 +09:00
"ts-node": "10.9.2",
"tsd": "0.30.7",
2023-12-29 05:52:50 +09:00
"typescript": "5.3.3"
2023-07-20 04:17:05 +09:00
},
"files": [
"built"
],
"dependencies": {
2023-11-06 10:19:50 +09:00
"eventemitter3": "5.0.1",
"reconnecting": "4.4.1"
2023-07-20 04:17:05 +09:00
},
"optionalDependencies": {
"@swc/core-android-arm64": "1.3.11"
}
}