forked from traversable/schema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.62 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.62 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
{
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"bench": "pnpm bench:types && pnpm bench:runtime",
"bench:runtime": "./bin/bench.ts run",
"bench:types": "./bin/bench.ts prepareTypes && ./bin/bench.ts runTypes && ./bin/bench.ts cleanupTypes",
"boot": "pnpm install && pnpm reboot",
"build": "pnpm build:root && pnpm run build:pre && pnpm --recursive --parallel run build && pnpm build:post",
"build:docs": "pnpm dlx tsx ./bin/docs.ts",
"build:pre": "pnpm dlx tsx ./bin/bump.ts",
"build:pkgs": "pnpm --filter \"@traversable/*\" run \"/^build:.*/\"",
"build:root": "tsc -b tsconfig.build.json && pnpm run build:docs",
"build:post": "pnpm circular",
"build:dist": "pnpm dlx tsx ./bin/pack.ts",
"changes": "changeset add",
"check": "pnpm run \"/^check:.*/\"",
"check:pkgs": "pnpm -r --stream --parallel run check",
"ci:docs": "pnpm typedoc --logLevel None",
"ci:version": "pnpm dlx tsx ./bin/version.ts",
"ci:publish": "changeset publish",
"circular": "pnpm dlx tsx ./bin/circular.ts",
"clean": "pnpm run \"/^clean:.*/\" && pnpm -r --stream --parallel run clean",
"clean:build": "pnpm -r --stream --parallel run clean:build",
"clean:deps": "pnpm -r --stream --parallel run clean:deps && rm -rf node_modules",
"clean:generated": "pnpm -r --stream --parallel run clean:generated",
"describe": "pnpm run \"/^describe:.*/\"",
"describe:project": "./bin/describe.ts",
"dev": "pnpm --filter \"@traversable/sandbox\" run \"dev\"",
"reboot": "./bin/reboot.ts",
"test": "vitest run -- --skipTypes && tsc -b tsconfig.json",
"test:cov": "pnpm vitest run --coverage",
"test:watch": "pnpm vitest --coverage",
"test:watch:no-cov": "pnpm vitest",
"workspace:new": "./bin/workspace-create.ts",
"workspace:rm": "./bin/workspace-cleanup.ts",
"bench_": "pnpm vitest bench --outputJson benchmarks/benchmark--$(date -Iseconds).json"
},
"devDependencies": {
"@ark/attest": "catalog:",
"@babel/cli": "catalog:",
"@babel/core": "catalog:",
"@babel/plugin-transform-export-namespace-from": "catalog:",
"@babel/plugin-transform-modules-commonjs": "catalog:",
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
"@types/madge": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"babel-plugin-annotate-pure-calls": "catalog:",
"fast-check": "catalog:",
"madge": "catalog:",
"tinybench": "catalog:",
"typedoc": "^0.28.9",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@10.17.1"
}