37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"name": "@webnet/smb2",
|
|
"version": "0.1.0",
|
|
"description": "SMB2/3 client with async VFS abstraction",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./_internals": {
|
|
"types": "./dist/_internals.d.ts",
|
|
"default": "./dist/_internals.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "rm -rf dist && tsc --project tsconfig.json",
|
|
"test": "tsx --test --test-timeout=10000 'src/**/*.test.ts'",
|
|
"test:coverage": "c8 --src src --exclude 'src/**/*.test.ts' --reporter text --reporter lcov node --enable-source-maps --import tsx --test-timeout=10000 --test 'src/**/*.test.ts'",
|
|
"typecheck": "tsc --project tsconfig.json --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.6.0",
|
|
"c8": "^11.0.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^6.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@webnet/binary": "*",
|
|
"@webnet/state-transfer": "*",
|
|
"@webnet/transport": "*",
|
|
"@webnet/vfs": "*"
|
|
}
|
|
}
|