-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 KB
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
{
"name": "simpoll",
"version": "0.3.5",
"description": "A bidirectional long-polling library designed for use with Roblox.",
"main": "dist/lib/index.js",
"author": "",
"license": "MIT",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint --fix --quiet src/**/*.ts --config eslint.config.ts --flag unstable_ts_config",
"format": "prettier --write src/**/*.ts",
"ci:prettier": "prettier --check src/**/*.ts",
"ci:tsc": "tsc --noEmit"
},
"dependencies": {
"@types/express": "^4.17.21",
"chalk": "^5.3.0",
"express": "^4.19.2",
"winston": "^3.14.2"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.4.0",
"eslint": "^9.9.0",
"jiti": "^1.21.6",
"prettier": "^3.3.3",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"files": [
"dist",
"src"
]
}