forked from parasop/poru
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@shadowrunners/automata",
"version": "2.4.3",
"description": "Automata is a fork of the Poru (by parasop) lavalink client developed and maintained by scrappie.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"tsup": {
"dts": true,
"bundle": false,
"treeshake": true,
"target": "node16",
"format": [
"esm",
"cjs"
],
"entry": [
"src/**/*.ts",
"index.ts"
]
},
"scripts": {
"build": "tsup --minify terser",
"localdeploy": "tsup --minify terser && npm link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shadowrunners/Automata.git"
},
"author": "Original Author: parasop | Forked by scrappie",
"license": "MIT",
"bugs": {
"url": "https://github.com/shadowrunners/Automata/issues"
},
"homepage": "https://github.com/shadowrunners/Automata#readme",
"dependencies": {
"undici": "^5.23.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/node": "^20.5.7",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"terser": "^5.19.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.9.0"
}
}