-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 1.96 KB
/
package.json
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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "att-client",
"version": "0.5.3",
"description": "Node bot library for A Township Tale, a VR game by Alta",
"homepage": "https://github.com/mdingena/att-client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mdingena/att-client.git"
},
"keywords": [
"township tale",
"bot library"
],
"author": "Marc Dingena",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdingena/att-client/issues"
},
"scripts": {
"lint": "eslint \"src/**/*\"",
"compile": "tsc --noEmit",
"prebuild": "rimraf dist",
"build": "run-p build:*",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build:esm": "tsc -p tsconfig-esm.json",
"postbuild:cjs": "node ./scripts/postbuild-cjs.js",
"prepack": "node --loader ts-node/esm ./scripts/prepack.ts",
"prepare": "run-s prepare:* build",
"prepare:husky": "husky install"
},
"dependencies": {
"@mdingena/tiny-typed-emitter": "^3.0.1",
"jwt-decode": "^3.1.2",
"ws": "^8.6.0"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"dotenv": "^16.0.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=18.2.0 <19 || >=20"
},
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
},
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist/"
]
}