-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 915 Bytes
/
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
{
"name": "bitbob",
"version": "1.0.4",
"description": "A big collection of tiny bit hacks from your tiny bit buddy!",
"main": "./dist/index.js",
"types": "./index.d.ts",
"scripts": {
"build": "node esbuild.config.js",
"lint": "eslint src",
"test": "vitest"
},
"keywords": [
"bit",
"bit manipulation",
"math",
"performance",
"utility",
"util"
],
"author": "Torathion",
"homepage": "https://github.com/Torathion/bitbob",
"repository": {
"type": "git",
"url": "https://github.com/Torathion/bitbob.git"
},
"bugs": {
"url": "https://github.com/Torathion/bitbob/issues"
},
"sideEffects": false,
"type": "module",
"license": "MIT",
"devDependencies": {
"@vitest/coverage-v8": "^3.0.2",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"eslint-config-shiny": "^4.1.0",
"typescript": "^5.7.3",
"vitest": "^3.0.2"
}
}