-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.09 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.09 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
{
"name": "blobkit-monorepo",
"version": "1.0.0",
"description": "BlobKit monorepo - comprehensive blob storage solution for Ethereum",
"type": "module",
"private": true,
"author": {
"name": "Ethereum Community Foundation",
"email": "engineering@ethcf.org",
"url": "https://ethcf.org/"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Zak Cole",
"email": "zcole@linux.com",
"url": "https://x.com/0xzak"
}
],
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,ts,json,md,yml,yaml}\"",
"clean": "npm run clean --workspaces",
"type-check": "npm run type-check --workspaces",
"docs:lint": "markdownlint docs/**/*.md README.md",
"docs:lint:fix": "markdownlint docs/**/*.md README.md --fix",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run build && changeset publish",
"dev": "bash scripts/dev.sh",
"dev:anvil": "anvil --host 0.0.0.0 --port 8545",
"precommit": "npm run format:check && npm run lint && npm run type-check",
"hooks:setup": "git config core.hooksPath .githooks",
"env:check": "node scripts/check-env.mjs",
"env:check:sdk": "node scripts/check-env.mjs sdk",
"env:check:proxy": "node scripts/check-env.mjs proxy"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"markdownlint-cli": "0.45.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/blobkit/blobkit.git"
},
"bugs": {
"url": "https://github.com/blobkit/blobkit/issues"
},
"homepage": "https://github.com/blobkit/blobkit#readme"
}