-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "ncaic",
"version": "0.5.2",
"description": "A collection of tools for NCAIC competitors.",
"main": "index.js",
"type": "module",
"bin": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsup",
"format": "prettier --write '**/*.{js,ts}' '!dist'",
"postinstall": "node scripts/prebuild.js && node dist/index.js setup"
},
"files": [
"dist",
"env",
"programs",
"scripts"
],
"keywords": [
"NCAIC"
],
"author": "JacobLinCool <[email protected]> (https://github.com/JacobLinCool)",
"license": "MIT",
"dependencies": {
"cloudflared": "^0.3.1",
"commander": "^9.3.0",
"js-yaml": "^4.1.0",
"pidusage": "^3.0.0",
"semver-regex": "^4.0.5",
"ws": "^8.8.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/js-yaml": "^4.0.5",
"@types/pidusage": "^2.0.2",
"@types/ws": "^8.5.3",
"esno": "^0.16.3",
"prettier": "^2.7.1",
"tsup": "^6.1.3"
}
}