forked from BarryThePirate/ftl-ext-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 866 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "ftl-ext-sdk",
"version": "0.1.0",
"description": "General-purpose SDK for building browser extensions and userscripts for fishtank.live",
"main": "dist/ftl-ext-sdk.bundle.js",
"module": "src/index.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch"
},
"dependencies": {
"msgpackr": "^1.10.0",
"socket.io-client": "^4.8.3",
"socket.io-msgpack-parser": "^3.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^1.0.0",
"rollup": "^4.0.0"
},
"files": [
"src/",
"dist/"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/user/ftl-ext-sdk"
},
"keywords": [
"fishtank",
"fishtank.live",
"extension",
"sdk"
]
}