-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.05 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": "@arrowood.dev/socket",
"version": "0.2.0",
"description": "A Node.js Implementation of the Cloudflare Socket API",
"keywords": [],
"homepage": "https://github.com/ethan-arrowood/socket#readme",
"bugs": {
"url": "https://github.com/ethan-arrowood/socket/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethan-arrowood/socket.git"
},
"license": "MIT",
"author": "Ethan Arrowood <[email protected]>",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier .",
"lint": "eslint .",
"prepare": "husky install",
"test": "tap run test/*.test.ts",
"type-check": "tsc"
},
"devDependencies": {
"@types/node": "18.17.5",
"@vercel/style-guide": "5.0.1",
"eslint": "8.48.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"tap": "18.2.0",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}