-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 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
{
"name": "@typeberry/testing",
"version": "0.1.0",
"description": "Typeberry E2E testing",
"main": "index.js",
"type": "module",
"workspaces": [
"./minifuzz",
"./perf-graph",
"./picofuzz",
"./picofuzz-benchmark",
"./tests"
],
"scripts": {
"build": "tsc && npm run build -w perf-graph",
"qa-fix": "npm run format && npm run lint",
"qa": "biome ci",
"format": "biome format --write",
"lint": "biome check --write && biome lint --write",
"fetch-typeberry": "docker pull --platform=linux/amd64 ghcr.io/fluffylabs/typeberry:latest",
"test": "tsx --test $(find . -type d -name node_modules -prune -type f -o -name '*.test.ts' | tr '\\n' ' ')"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FluffyLabs/typeberry-testing.git"
},
"author": "Fluffy Labs",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/FluffyLabs/typeberry-testing/issues"
},
"homepage": "https://github.com/FluffyLabs/typeberry-testing#readme",
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@tsconfig/node24": "24.0.0",
"@typeberry/convert": "^0.1.2-220a073",
"@types/node": "^24.5.2",
"tsx": "4.19.4",
"typescript": "5.9.3"
}
}