-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 946 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 946 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
39
40
{
"name": "@prljav/prlib",
"version": "0.0.0-development",
"description": "A library for writing bots in Procedural Realms.",
"scripts": {
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/prljav/prlib"
},
"author": "prljav",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/prljav/prlib/issues"
},
"homepage": "https://github.com/prljav/prlib#readme",
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@types/ws": "^8.5.13",
"semantic-release": "^24.2.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"}
}