-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "@uwu-codes/status-server",
"version": "1.0.1",
"description": "A status server for my projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"prepublishOnly": "rm -rf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UwUCode/StatusServer.git"
},
"author": "Donovan_DMC <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/UwUCode/StatusServer/issues"
},
"homepage": "https://github.com/UwUCode/StatusServer#readme",
"devDependencies": {
"@swc/core": "^1.3.41",
"@swc/helpers": "^0.4.14",
"@types/node": "^18.15.3",
"@types/yargs": "^17.0.22",
"@uwu-codes/eslint-config": "^1.1.21",
"@uwu-codes/tsconfig": "^1.0.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^10.0.0"
},
"bin": "bin/cli.mjs"
}