-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 KB
/
package.json
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
{
"name": "virtual-s3-filesystem",
"version": "1.3.0",
"description": "A virtual filesystem for processing AWS S3 files locally",
"homepage": "https://github.com/ffxsam/virtual-s3-filesystem",
"repository": {
"type": "git",
"url": "https://github.com/ffxsam/virtual-s3-filesystem.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm lint && rm -rf dist && tsc && node build",
"dev": "esbuild src/index.ts --bundle --platform=node --outdir=dist --watch",
"lint": "eslint . --ext .ts --ignore-pattern 'dist/**' --fix",
"prepare": "husky install",
"test": "vitest --run"
},
"keywords": [],
"author": "Sam Hulick <samh@reelcrafter.com>",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/mime-db": "^1.43.5",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"aws-sdk-client-mock": "^3.1.0",
"esbuild": "^0.21.4",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"dependencies": {
"debug": "^4.3.4"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.520.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}