-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "@terbiumos/fs-bench",
"version": "1.0.0",
"description": "A benchmarking tool for benchmarking web file system implementations",
"keywords": [
"benchmark",
"file-system"
],
"homepage": "https://github.com/TerbiumOS/fs-bench#readme",
"bugs": {
"url": "https://github.com/TerbiumOS/fs-bench/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TerbiumOS/fs-bench.git"
},
"license": "Apache-2.0",
"author": "TerbiumOS Development",
"type": "module",
"bin": {
"fs-bench": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"bench": "tsx src/cli.ts",
"prepack": "npm run build"
},
"devDependencies": {
"@isomorphic-git/lightning-fs": "^4.6.2",
"@terbiumos/tfs": "^1.1.0-dev.1",
"@types/express": "^5.0.6",
"@types/node": "^22.15.34",
"express": "^5.2.1",
"fake-indexeddb": "^6.0.1",
"filer": "^1.4.1",
"puppeteer": "^25.1.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
}
}