-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "bytez.js",
"author": "Bytez",
"license": "ISC",
"version": "3.0.0",
"type": "module",
"packageManager": "yarn@4.9.2",
"engines": {
"node": ">=18.0.0"
},
"description": "",
"scripts": {
"build": "pkgroll",
"dev": "tsx src/index.node.ts",
"test": "tsx ./tests/tasks.test.ts",
"test:unit": "node --test 'src/**/*.test.ts'",
"lint": "eslint ./src/*.ts",
"update": "yarn upgrade-interactive"
},
"dependencies": {
"undici": "^7.16.0"
},
"devDependencies": {
"@types/node": "^22.18.12",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"bytez.js": "^1.0.1",
"eslint": "^9.38.0",
"inquirer": "^12.10.0",
"pkgroll": "^2.20.1",
"semver": "^7.7.3",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
}