-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "flash-buffer",
"version": "1.1.6",
"description": "An extremely fast and optimized pure typescript binary buffer for your cross-platform real-time applications. A modern approach to memory optimization and network packages.",
"keywords": [
"fast",
"flash",
"optimized",
"binary",
"buffer",
"tool",
"util",
"typescript"
],
"homepage": "https://github.com/DevsDaddy/flash-buffer#readme",
"bugs": {
"url": "https://github.com/DevsDaddy/flash-buffer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevsDaddy/flash-buffer.git"
},
"license": "MIT",
"author": "Elijah Rastorguev",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./schema": {
"import": "./dist/schema/index.mjs",
"require": "./dist/schema/index.js",
"types": "./dist/schema/index.d.ts"
}
},
"scripts": {
"update-docs": "ts-node docutil.ts",
"build": "npm run update-docs && tsup src/index.ts src/schema/index.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"test:watch": "vitest",
"bench": "tsx benchmarks/bench.ts",
"bench:varint": "tsx benchmarks/bench.varint.ts",
"bench:bit": "tsx benchmarks/bench.bit.ts",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^20.11.0",
"reflect-metadata": "^0.2.1",
"ts-morph": "^27.0.2",
"ts-node": "^10.9.0",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.0",
"tinybench": "^2.6.0"
},
"files": [
"dist",
"README.md"
]
}