forked from JoshGlazebrook/smart-buffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
{
"name": "smart-arraybuffer",
"version": "1.0.0",
"description": "A drop-in replacement for smart-buffer that does not rely on the Buffer global.",
"main": "dist/smart-arraybuffer.js",
"exports": {
".": "./dist/smart-arraybuffer.js"
},
"type": "module",
"homepage": "https://github.com/sebamarynissen/smart-arraybuffer",
"repository": {
"type": "git",
"url": "git+https://github.com/sebamarynissen/smart-arraybuffer.git"
},
"publishConfig": {
"repository": "https://github.com/sebamarynissen/smart-arraybuffer"
},
"bugs": {
"url": "https://github.com/sebamarynissen/smart-arraybuffer/issues"
},
"keywords": [
"buffer",
"smart",
"packet",
"serialize",
"network",
"cursor",
"simple"
],
"engines": {
"node": ">= 18.0.0"
},
"author": "Sebastiaan Marynissen",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.0",
"chai": "^5.1.2",
"cross-env": "^7.0.3",
"mocha": "^10.8.2",
"tslint": "^6.1.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {},
"scripts": {
"prepublish": "npm install -g typescript && npm run build",
"test": "cross-env NODE_ENV=test mocha --recursive test/**/*.ts",
"lint": "tslint --project tsconfig.json 'src/**/*.ts'",
"build": "tsc -p ./"
},
"mocha": {
"import": "tsx"
}
}