forked from beyond-all-reason/tachyon-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "tachyon-client",
"version": "6.1.0",
"description": "Client API for interfacing with Beyond All Reason's Teiserver via the Tachyon protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "ttsc",
"dev": "ttsc --watch",
"lint-check": "eslint . --ext .ts,.vue",
"lint": "eslint . --ext .ts,.vue --fix",
"format-check": "prettier --check src/**/*.{ts,vue,scss,json}",
"format": "prettier --write src/**/*.{ts,vue,scss,json}",
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jazcash/tachyon-client.git"
},
"author": "Jazcash",
"license": "mit",
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"jaz-ts-utils": "^6.1.0",
"type-fest": "^2.12.2"
},
"devDependencies": {
"@sinclair/typebox": "^0.25.21",
"@types/eslint": "^7.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^7.19.0",
"eslint-plugin-simple-import-sort": "^6.0.1",
"jest": "^26.6.3",
"lint-staged": "^9.5.0",
"source-map-support": "^0.5.20",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.15",
"typescript": "^4.6.4",
"typescript-transform-paths": "^3.4.6"
}
}