-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 4.34 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 4.34 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
{
"name": "workit",
"version": "0.1.5",
"private": true,
"description": "WorkIt monorepo.",
"type": "module",
"license": "Apache-2.0",
"author": "Admilson B. F. Cossa",
"workspaces": [
"packages/core"
],
"scripts": {
"clean": "npm --workspace @workit/core run clean",
"build": "npm --workspace @workit/core run build",
"typecheck": "npm --workspace @workit/core run typecheck",
"check:no-network": "npm --workspace @workit/core run check:no-network",
"check:headers": "npm --workspace @workit/core run check:headers",
"check:security": "npm --workspace @workit/core run check:security",
"check:vulnerabilities": "npm --workspace @workit/core run check:vulnerabilities",
"check:sbom": "npm --workspace @workit/core run check:sbom",
"check:tests": "npm --workspace @workit/core run check:tests",
"check:api": "npm --workspace @workit/core run check:api",
"check:size": "npm --workspace @workit/core run check:size",
"report:size": "npm --workspace @workit/core run report:size",
"check:benchmark": "npm --workspace @workit/core run check:benchmark",
"check:context-performance": "npm --workspace @workit/core run check:context-performance",
"check:1b": "npm --workspace @workit/core run check:1b",
"check:leak": "npm --workspace @workit/core run check:leak",
"check:stream-memory": "npm --workspace @workit/core run check:stream-memory",
"check:soak": "npm --workspace @workit/core run check:soak",
"check:exporter-stress": "npm --workspace @workit/core run check:exporter-stress",
"check:package-consumer": "npm --workspace @workit/core run check:package-consumer",
"check:claims": "npm --workspace @workit/core run check:claims",
"check:public-proof": "npm --workspace @workit/core run check:public-proof",
"check:worker-contract": "npm --workspace @workit/core run check:worker-contract",
"check:release-policy": "npm --workspace @workit/core run check:release-policy",
"check:release": "npm --workspace @workit/core run check:release",
"bench:articles": "npm --workspace @workit/core run bench:articles",
"bench:articles:repeated": "npm --workspace @workit/core run bench:articles:repeated",
"site:dev": "npm --prefix apps/use-cases-site run dev",
"site:build": "npm --prefix apps/use-cases-site run build",
"site:preview": "npm --prefix apps/use-cases-site run preview",
"test:evidence": "npm --workspace @workit/core run test:evidence",
"test:property": "npm --workspace @workit/core run test:property",
"pack:dry": "npm --workspace @workit/core run pack:dry",
"sample:1b": "npm --workspace @workit/core run sample:1b",
"sample:concurrency": "npm --workspace @workit/core run sample:concurrency",
"sample:progress": "npm --workspace @workit/core run sample:progress",
"sample:cancel": "npm --workspace @workit/core run sample:cancel",
"sample:timeout": "npm --workspace @workit/core run sample:timeout",
"sample:no-orphan": "npm --workspace @workit/core run sample:no-orphan",
"sample:all": "npm --workspace @workit/core run sample:all",
"sample:agent": "npm --workspace @workit/core run sample:agent",
"sample:race": "npm --workspace @workit/core run sample:race",
"sample:rag": "npm --workspace @workit/core run sample:rag",
"sample:batch": "npm --workspace @workit/core run sample:batch",
"sample:stream": "npm --workspace @workit/core run sample:stream",
"sample:embed100k": "npm --workspace @workit/core run sample:embed100k",
"sample:bisection": "npm --workspace @workit/core run sample:bisection",
"sample:stt-disconnect": "npm --workspace @workit/core run sample:stt-disconnect",
"sample:supervise": "npm --workspace @workit/core run sample:supervise",
"sample:worker": "npm --workspace @workit/core run sample:worker",
"sample:aws": "npm --workspace @workit/core run sample:aws",
"sample:azure": "npm --workspace @workit/core run sample:azure",
"sample:next": "npm --workspace @workit/core run sample:next",
"sample:otel": "npm --workspace @workit/core run sample:otel",
"sample:logging": "npm --workspace @workit/core run sample:logging",
"soak:24h": "npm --workspace @workit/core run soak:24h",
"test": "npm --workspace @workit/core run test",
"test:coverage": "npm --workspace @workit/core run test:coverage",
"verify": "npm --workspace @workit/core run verify"
}
}