-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.16 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@ipfs-meshkit/meshkit",
"version": "1.0.1",
"description": "Node.js SDK for Kubo/IPFS — upload, pin, IPNS, local daemon, and multi-node failover.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"SECURITY.md"
],
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist && npm run clean --workspaces --if-present && find packages -name 'tsconfig.tsbuildinfo' -delete 2>/dev/null || true",
"prepublishOnly": "npm run build",
"test": "npm run test:unit",
"test:unit": "vitest run --project unit",
"test:unit:watch": "vitest --project unit",
"test:unit:coverage": "vitest run --project unit --coverage",
"test:integration": "npm run build && vitest run --project integration",
"test:all": "npm run build && vitest run",
"test:ci": "npm run test:unit:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IPFS-Meshkit/meshkit0.git"
},
"keywords": [
"ipfs",
"kubo",
"meshkit",
"decentralized-storage",
"ipns",
"typescript"
],
"author": "IPFS Meshkit Contributors",
"contributors": [
{
"name": "Anurag Pandey",
"url": "https://github.com/anurag-p6"
},
{
"name": "Manu Sheel Gupta",
"url": "https://github.com/seetadev"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/IPFS-Meshkit/meshkit0/issues"
},
"homepage": "https://github.com/IPFS-Meshkit/meshkit0#readme",
"sideEffects": false,
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"kubo-rpc-client": "^7.1.0"
},
"devDependencies": {
"@types/node": "^25.9.3",
"@vitest/coverage-v8": "^3.2.4",
"typescript": "^6.0.3",
"tsup": "^8.5.0",
"vitest": "^3.2.4"
}
}