-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 1.44 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"author": {
"email": "[email protected]",
"name": "Florian Wendelborn",
"url": "https://hello.dodekeract.com/npm/bitwise"
},
"bugs": {
"url": "https://github.com/FlorianWendelborn/bitwise/issues"
},
"contributors": [
{
"name": "Hubertus Weber",
"url": "https://github.com/HubertusWeber"
}
],
"description": "Manipulates bits, nibbles, bytes, and buffers.",
"devDependencies": {
"bun-types": "^1.0.1",
"prettier": "^3.0.3",
"typescript": "^5.3.3"
},
"homepage": "https://github.com/FlorianWendelborn/bitwise#readme",
"keywords": [
"and",
"binary",
"bit",
"bits",
"bitwise",
"buffer",
"buffers",
"change",
"flip",
"manipulate",
"nand",
"nibble",
"nibbles",
"nor",
"not",
"or",
"read",
"toggle",
"write",
"xnor",
"xor"
],
"license": "MIT",
"main": "index.js",
"module": "esm/index.js",
"name": "bitwise",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlorianWendelborn/bitwise.git"
},
"scripts": {
"build": "rm -rf build && tsc && tsc -p ./tsconfig.treeshake.json && bun run build:copy",
"build:copy": "cp package.json build && cp readme.md build && cp license.md build",
"coverage": "bun test --coverage",
"test": "bun test",
"watch": "bun test --watch"
},
"sideEffects": false,
"types": "index.d.ts",
"version": "2.2.1"
}