This repository was archived by the owner on Apr 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.15 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@alwatr/node-fs",
"version": "6.0.2",
"description": "Enhanced file system operations in Node.js with asynchronous queue to prevent parallel writes.",
"license": "MPL-2.0",
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
"type": "module",
"repository": {
"directory": "packages/node-fs",
"type": "git",
"url": "https://github.com/Alwatr/nanolib"
},
"homepage": "https://github.com/Alwatr/nanolib/tree/next/packages/node-fs#readme",
"bugs": "https://github.com/Alwatr/nanolib/issues",
"exports": {
".": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
}
},
"sideEffects": false,
"dependencies": {
"@alwatr/async-queue": "workspace:*",
"@alwatr/flat-string": "workspace:*",
"@alwatr/logger": "workspace:*"
},
"devDependencies": {
"@alwatr/nano-build": "workspace:*",
"@alwatr/prettier-config": "workspace:*",
"@alwatr/tsconfig-base": "workspace:*",
"@alwatr/type-helper": "workspace:*",
"@types/node": "^24.12.0",
"typescript": "^6.0.2"
},
"scripts": {
"b": "bun run build",
"build": "bun run build:ts && bun run build:es",
"build:es": "nano-build --preset=module src/main.ts",
"build:ts": "tsc --build",
"c": "bun run clean",
"cb": "bun run clean && bun run build",
"clean": "rm -rfv dist *.tsbuildinfo",
"d": "bun run build:es && bun",
"w": "bun run watch",
"watch": "bun run watch:ts & bun run watch:es",
"watch:es": "bun run build:es --watch",
"watch:ts": "bun run build:ts --watch --preserveWatchOutput"
},
"files": [
"**/*.{js,mjs,cjs,ts,map,d.ts,html,LEGAL.txt}",
"README.md",
"LICENSE",
"!demo/**/*",
"!**/*.test.js"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"alwatr",
"async",
"cross-platform",
"ECMAScript",
"esm",
"file",
"filesystem",
"fs",
"javascript",
"JSON",
"module",
"nanolib",
"node",
"node-fs",
"nodejs",
"queue",
"readFile",
"readJson",
"typescript",
"util",
"utility",
"utils",
"writeFile",
"writeJson"
],
"prettier": "@alwatr/prettier-config"
}