-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "big-varint",
"version": "0.2.1",
"description": "Encode and decode arbitrarily large signed and unsigned BigInts",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./signed": "./lib/signed.js",
"./unsigned": "./lib/unsigned.js"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc --build tsconfig.json test/tsconfig.json",
"dev": "tsc --build tsconfig.json test/tsconfig.json --watch",
"clean": "tsc --build tsconfig.json test/tsconfig.json --clean",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joeltg/big-varint.git"
},
"keywords": [
"bigint",
"varint",
"signed-varint"
],
"author": "Joel Gustafson",
"license": "MIT",
"bugs": {
"url": "https://github.com/joeltg/big-varint/issues"
},
"homepage": "https://github.com/joeltg/big-varint#readme",
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@types/node": "^22.7.6",
"ava": "^6.1.3",
"typescript": "^5.6.3"
}
}