-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.63 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
{
"name": "exercode-problem-utils",
"version": "0.0.0-semantically-released",
"description": ":100: A set of utilities for judging programs on Exercode (https://exercode.willbooster.com/).",
"repository": {
"type": "git",
"url": "git+https://github.com/WillBooster/exercode-problem-utils.git"
},
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"type": "module",
"workspaces": [
"packages/*",
"example"
],
"scripts": {
"build": "bun run --filter '@exercode/*' build",
"check-authoring": "bun run typecheck && bun oxlint --type-aware --type-check test example *.config.ts",
"cleanup": "bun wb lint --fix --format",
"format": "bun wb lint --format",
"lint": "bun wb lint",
"lint-fix": "bun wb lint --fix",
"prepare": "(bun lefthook install || true) && (test ! -f .lefthook/normalize-bun-lockfile.sh || bash .lefthook/normalize-bun-lockfile.sh)",
"release": "wb release",
"start": "bun packages/problem-utils/src/index.ts",
"test": "bun run build && bun wb test",
"test/ci": "bun run check-authoring && bun wb test-on-ci",
"test/ci-setup": "bun run build && bun exercode-browser browsers install chrome-headless-shell",
"typecheck": "bun wb typecheck",
"verify": "bun wb verify",
"verify-full": "bun run check-authoring && bun wb verify --full"
},
"prettier": "@willbooster/prettier-config",
"devDependencies": {
"@anolilab/multi-semantic-release": "4.4.13",
"@exercode/problem-utils": "workspace:*",
"@exercode/problem-utils-browser": "workspace:*",
"@exercode/problem-utils-llm": "workspace:*",
"@tsconfig/bun": "1.0.11",
"@tsconfig/node-lts": "24.0.1",
"@tsconfig/node-ts": "23.6.4",
"@tsconfig/node24": "24.0.5",
"@types/bun": "1.4.2",
"@types/node": "26.5.1",
"@willbooster/oxfmt-config": "1.2.2",
"@willbooster/oxlint-config": "1.4.8",
"@willbooster/prettier-config": "10.4.0",
"@willbooster/wb": "22.7.0",
"build-ts": "21.0.16",
"conventional-changelog-conventionalcommits": "10.4.0",
"lefthook": "2.1.14",
"oxfmt": "0.68.0",
"oxlint": "1.83.0",
"oxlint-tsgolint": "7.0.2001",
"prettier": "3.9.6",
"prettier-plugin-java": "2.10.3",
"semantic-release": "25.0.9",
"sort-package-json": "4.0.0",
"typescript": "7.0.2",
"vitest": "5.0.0",
"zod": "4.6.2"
},
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"multi-release": {
"tagFormat": "${name === '@exercode/problem-utils' ? 'v' : name + '@'}${version}",
"deps": {
"bump": "override",
"release": "patch"
}
}
}