-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3.39 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
{
"name": "meshkit-repo",
"version": "1.0.0",
"private": true,
"description": "MeshKit universal TypeScript SDK monorepo.",
"license": "MIT OR Apache-2.0",
"type": "module",
"engines": {
"node": ">=20.11"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @meshkit/core && npm run build -w @meshkit/meshkit && npm run build -w @meshkit/web && npm run build -w @meshkit/react-native && npm run build -w @meshkit/ionic && npm run build -w @meshkit/node && npm run build -w @meshkit/cli && npm run build -w @meshkit/mcp",
"test": "npm run build && vitest run --environment node --globals --dir packages --testTimeout 20000",
"typecheck": "tsc -p tsconfig.base.json --noEmit",
"lint": "eslint . --ext .ts",
"no-placeholders": "node scripts/no-placeholders.mjs",
"audit:no-stubs": "node scripts/audit-no-stubs.mjs",
"examples:validate": "node scripts/validate-examples.mjs",
"docs:fuma:rewrite": "node scripts/rewrite-fumadocs-quality-pass.mjs",
"docs:fuma:build": "npm run build --prefix docs",
"docs:fuma:typecheck": "npm run types:check --prefix docs",
"docs:fuma:validate": "node scripts/validate-fumadocs.mjs && npm run validate:links --prefix docs",
"docs:site": "npm run docs:fuma:validate",
"docs:api": "node scripts/generate-api-reference.mjs",
"release:validate": "node scripts/validate-package-metadata.mjs",
"audit:prod": "npm audit --omit=dev",
"pack:dry": "npm pack --workspaces --dry-run --cache .npm-cache",
"publish:dry": "node scripts/publish-dry-run.mjs",
"postpublish:smoke": "node scripts/postpublish-smoke.mjs",
"providers:ipfs:live": "node scripts/validate-ipfs-daemon.mjs",
"providers:pinning:live": "node scripts/validate-pinning-service.mjs",
"providers:gateway:live": "node scripts/validate-gateway-retrieval.mjs",
"providers:cluster:live": "node scripts/validate-ipfs-cluster.mjs",
"providers:filecoin:live": "node scripts/validate-filecoin-bridge.mjs",
"providers:kubo-remote-pin:live": "node scripts/validate-kubo-remote-pin.mjs",
"providers:kubo-metadata-negative:live": "node scripts/validate-kubo-metadata-negative.mjs",
"providers:kubo-version-matrix:live": "node scripts/validate-kubo-version-matrix.mjs",
"providers:trustless-gateway:live": "node scripts/validate-trustless-gateway.mjs",
"providers:raw-cid-determinism:live": "node scripts/validate-car-determinism.mjs",
"providers:car-determinism:live": "node scripts/validate-car-determinism.mjs",
"test:browser:helia": "node scripts/validate-browser-helia.mjs",
"mobile:flutter:toolchain": "node scripts/validate-flutter-toolchain.mjs",
"files:launch-scale": "node scripts/validate-launch-scale-files.mjs",
"check": "node scripts/check.mjs"
},
"devDependencies": {
"@helia/unixfs": "^7.2.1",
"@types/node": "^24.0.3",
"eslint": "^9.29.0",
"helia": "^6.1.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vitest": "^3.2.4"
},
"dependencies": {
"multiformats": "^13.3.7"
},
"packageManager": "npm@11.13.0",
"author": "MeshKit contributors",
"keywords": [
"meshkit",
"ipfs",
"filecoin",
"encrypted-storage",
"sdk",
"mobile"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Winter-Soren"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meshkit/meshkit.git"
}
}