-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.36 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.36 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
{
"name": "node-lib",
"version": "1.9.4",
"private": true,
"description": "Useful and straightforward abstractions for many NodeJS internal methods.",
"homepage": "https://github.com/ruggeryiury/node-lib#readme",
"repository": "github:ruggeryiury/node-lib",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Ruggery Iury Corrêa <ruggeryiury@gmail.com>",
"license": "MIT",
"keywords": [
"binary-reader",
"binary-reader-writer",
"binary-writer",
"fs",
"fs-library",
"hashing",
"hash",
"javascript",
"javascript-library",
"node",
"nodejs",
"nodejs-modules",
"path",
"random-bytes",
"typescript",
"typescript-library"
],
"engines": {
"node": ">=24.12.0"
},
"scripts": {
"build": "tsdown",
"clear": "rimraf dist",
"dev": "tsx watch ./dev/main.ts",
"format": "prettier --write src",
"lint": "eslint src"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"tsdown": "0.21.2",
"tsx": "^4.21.0",
"type-fest": "^5.4.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
}
}