-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.87 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
{
"name": "luna-ipfs",
"version": "0.3.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "NODE_OPTIONS='--import \"data:text/javascript,import { register } from \\\"node:module\\\"; import { pathToFileURL } from \\\"node:url\\\"; register(\\\"ts-node/esm\\\", pathToFileURL(\\\"./\\\"));\"' ts-mocha tests/*.test.ts",
"test:dev": "NODE_OPTIONS='--import \"data:text/javascript,import { register } from \\\"node:module\\\"; import { pathToFileURL } from \\\"node:url\\\"; register(\\\"ts-node/esm\\\", pathToFileURL(\\\"./\\\"));\"' ts-mocha tests/test.ts",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"engineStrict": true,
"keywords": [],
"author": "Kumar Anirudha (@anistark)",
"license": "MIT",
"description": "Luna - A TypeScript SDK for uploading files & directories to IPFS using Helia.",
"bugs": {
"url": "https://github.com/anistark/luna/issues"
},
"homepage": "https://github.com/anistark/luna#readme",
"dependencies": {
"@helia/unixfs": "^4.0.2",
"blockstore-core": "^5.0.2",
"blockstore-fs": "^2.0.2",
"fs": "0.0.2",
"helia": "^5.2.1",
"path": "^0.12.7"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.13.5",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"jest": "^29.7.0",
"mocha": "^11.1.0",
"mock-fs": "^5.5.0",
"sinon": "^19.0.2",
"ts-jest": "^29.2.6",
"ts-mocha": "^11.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"exports": {
"./index": "./dist/index.js"
}
}