-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "doclith",
"version": "0.6.0",
"private": true,
"description": "TypeScript/JS SDK for the DocLang v0.6 format — parsing, lossless AST, validation, CLI, converters.",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "tsc -b tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json",
"lint": "eslint .",
"format": "prettier --check .",
"format:write": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"clean": "tsc -b tsconfig.build.json --clean",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"onnxruntime-node"
]
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@doclith/html": "workspace:*",
"@doclith/markdown": "workspace:*",
"@doclith/pdf": "workspace:*",
"@eslint/js": "^9.13.0",
"@types/node": "^22.7.0",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.10.0",
"vitest": "^2.1.0"
}
}