-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 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
{
"name": "@libslm/binary",
"version": "0.1.5",
"homepage": "https://github.com/libslm/binary#readme",
"description": "Low-level binary data manipulation library with typed primitives and bitwise operations in TypeScript.",
"keywords": [
"binary",
"bitwise",
"low-level",
"binary-operations",
"typescript",
"bit-manipulation",
"bit",
"byte",
"nibble",
"word",
"dword",
"experimental",
"libslm"
],
"license": "MIT",
"author": "Delta Thiesen <delta.thiesen.1990@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"generate-types": "ts-node tools/type.generator.ts",
"compile": "tsc && npm run transfer",
"transfer": "copyfiles -u 1 \"./src/**/*.d.ts\" dist",
"build": "npm run generate-types && npm run compile",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node-dev": "2.0.0",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/libslm/binary.git"
},
"bugs": {
"url": "https://github.com/libslm/binary/issues"
}
}