-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 1.89 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
{
"name": "tachyon-client",
"version": "11.0.0",
"description": "Tachyon client written in TypeScript",
"author": "Jazcash",
"license": "ISC",
"scripts": {
"dev": "npm run build -- --watch src",
"build": "tsup",
"tidy": "npm run lint && npm run format",
"lint": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "jest"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"dependencies": {
"@badgateway/oauth2-client": "^2.4.2",
"ajv": "^8.16.0",
"ajv-formats": "^3.0.1",
"jaz-ts-utils": "^7.7.0",
"open": "^9.1.0",
"tachyon-protocol": "^1.9.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^29.2.5",
"@types/node": "^20.12.2",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.7.0",
"jest-websocket-mock": "^2.5.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsup": "^8.3.0",
"type-fest": "^4.26.1",
"typescript": "^5.6.2"
}
}