-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.83 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.83 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"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/).",
"keywords": [
"exercode",
"judge"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WillBooster/exercode-problem-utils.git"
},
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./presets/*": {
"types": "./dist/presets/*.d.ts",
"import": "./dist/presets/*.js",
"require": "./dist/presets/*.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "build-ts lib --input src/index.ts src/presets/*.ts",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn format-code && yarn prettify",
"format-code": "oxfmt --write --no-error-on-unmatched-pattern . '!**/package.json'",
"lint": "oxlint --no-error-on-unmatched-pattern .",
"lint-fix": "yarn lint --fix",
"prepare": "lefthook install || true",
"prettify": "prettier --cache --color --no-error-on-unmatched-pattern --write \"**/{.*/,}*.{java}\" \"!**/test{-,/}fixtures/**\" || true",
"start": "build-ts run src/index.ts",
"test": "rm -fr temp && dotenv -c test -- vitest test",
"test/ci-setup": "yarn build && bun install --cwd example",
"typecheck": "wb typecheck",
"verify": "wb verify",
"verify-full": "wb verify --full"
},
"prettier": "@willbooster/prettier-config",
"dependencies": {
"@ai-sdk/amazon-bedrock": "4.0.100",
"@ai-sdk/google": "3.0.67",
"@ai-sdk/openai": "3.0.58",
"@ai-sdk/xai": "3.0.87",
"ai": "6.0.174",
"front-matter": "4.0.2",
"zod": "4.4.3"
},
"devDependencies": {
"@tsconfig/node-lts": "24.0.0",
"@tsconfig/node-ts": "23.6.4",
"@tsconfig/node24": "24.0.4",
"@types/node": "24.12.2",
"@typescript/native-preview": "7.0.0-dev.20260503.1",
"@willbooster/oxfmt-config": "1.2.2",
"@willbooster/oxlint-config": "1.4.6",
"@willbooster/prettier-config": "10.4.0",
"@willbooster/wb": "13.12.15",
"build-ts": "17.1.10",
"conventional-changelog-conventionalcommits": "9.3.1",
"dotenv-cli": "11.0.0",
"lefthook": "2.1.6",
"oxfmt": "0.48.0",
"oxlint": "1.63.0",
"oxlint-tsgolint": "0.22.1",
"prettier": "3.8.3",
"prettier-plugin-java": "2.8.1",
"puppeteer": "24.42.0",
"semantic-release": "25.0.3",
"sort-package-json": "3.6.1",
"vitest": "4.1.5"
},
"packageManager": "yarn@4.14.1",
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public"
}
}