-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.71 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.71 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
{
"name": "@cypsela/browser-source",
"version": "3.1.1",
"description": "W3C's FileList and WICG’s FileSystemEntry and FileSystemHandle as a sources for @helia/unixfs",
"type": "module",
"repository": {
"url": "https://github.com/cypsela/fs-entry-source",
"type": "github"
},
"bugs": {
"url": "https://github.com/cypsela/issues"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"./dist/src"
],
"keywords": [
"ipfs",
"helia",
"unixfs",
"browser",
"webkit",
"opfs",
"FileList",
"FileSystemEntry",
"FileSystemHandle"
],
"author": "tabcat",
"license": "MIT",
"scripts": {
"prepublishOnly": "pnpm install && pnpm build",
"lint": "prettier src --check",
"format": "prettier src --write",
"build": "tsc",
"build:example": "esbuild example/index.ts --bundle --format=esm --outfile=example/bundle.js",
"test": "vitest --config vitest.config.ts --run",
"test:watch": "vitest --config vitest.config.ts",
"api-docs": "typedoc src",
"ci": "pnpm build && pnpm lint"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
},
"lint-staged": {
"*.ts": "prettier --ignore-unknown --write"
},
"dependencies": {
"blob-to-it": "^2.0.10"
},
"devDependencies": {
"@helia/unixfs": "^5.0.3",
"esbuild": "^0.25.5",
"helia": "^5.4.2",
"husky": "^9.1.7",
"ipfs-unixfs": "^11.2.1",
"ipfs-unixfs-importer": "^16.0.1",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typedoc": "^0.28.5",
"typescript": "^5.8.3",
"vitest": "^3.2.2"
}
}