-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.05 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
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
{
"name": "nafs",
"version": "0.1.10",
"description": "Node Active FS - nafs. File system abstraction to read/write files to AWS S3 or local directory. Includes middleware for usage with express.",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./types/index.d.ts"
}
},
"types": "./types/index.d.ts",
"scripts": {
"start": "bun run src/index.ts",
"test": "bun test",
"build": "rm -rf ./dist ./types && tsc -p tsconfig.build.json && swc ./src --config-file .swcrc.cjs.json --out-dir ./dist/cjs --ignore **/*.test.ts --strip-leading-paths && swc ./src --config-file .swcrc.mjs.json --out-dir ./dist/mjs --ignore **/*.test.ts --strip-leading-paths && ./patch-dist-dirs.sh",
"docs": "typedoc src/index.ts",
"typecheck": "tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricsam/nafs.git"
},
"keywords": [
"fs",
"nafs",
"io",
"aws",
"s3",
"express",
"middleware"
],
"author": "Richie <[email protected]>",
"license": "MIT",
"devDependencies": {
"dotenv": "16.4.7",
"@types/bun": "latest",
"memfs": "4.15.3",
"@ricsam/linkfs": "2.0.8",
"@aws-sdk/client-s3": "3.722.0",
"prettier": "3.4.2",
"@changesets/cli": "2.27.11",
"typescript": "5.7.2",
"@swc/cli": "0.5.2",
"@swc/core": "1.10.4",
"@aws-sdk/lib-storage": "3.722.0",
"typedoc": "0.27.6",
"@enstore/fs": "0.0.9"
},
"peerDependencies": {
"@aws-sdk/lib-storage": "*",
"@aws-sdk/client-s3": "*",
"memfs": "*",
"@ricsam/linkfs": "*",
"@enstore/fs": "*"
},
"peerDependenciesMeta": {
"@aws-sdk/lib-storage": {
"optional": true
},
"@aws-sdk/client-s3": {
"optional": true
},
"memfs": {
"optional": true
},
"@ricsam/linkfs": {
"optional": true
},
"@enstore/fs": {
"optional": true
}
},
"dependencies": {}
}