-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1 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
{
"name": "@bitbeater/node-utils",
"version": "3.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"default": "./dist/index.js"
},
"./fs": {
"default": "./dist/fs/fs.js"
},
"./http": {
"default": "./dist/http.js"
},
"./*": {
"default": "./dist/*.js"
}
},
"files": [
"dist"
],
"typesVersions": {
"*": {
"*": [
"dist/*",
"dist/*/index.d.ts"
]
}
},
"scripts": {
"genDocs": "npx typedoc --options typedoc.json",
"test": "tsc && node --test -r ./node_modules/ts-node/register/transpile-only.js ./tests/{**/*,*}.test.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git://github.com/bitbeater/node-utils.git"
},
"publishConfig": {
"access": "public"
},
"author": "",
"license": "ISC",
"dependencies": {
"@bitbeater/ecma-utils": "^2.10.1",
"@types/node": "^24.0.1"
},
"devDependencies": {
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}