-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 923 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 923 Bytes
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
{
"name": "std",
"version": "5.3.3",
"packageManager": "pnpm@10.4.1",
"type": "module",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"format": "biome format --write",
"lint": "biome lint --write",
"check": "biome check",
"check:types": "tsc --noEmit",
"docs:generate": "typedoc",
"build:registry": "jsrepo build",
"ci:release": "pnpm jsrepo publish --verbose && changeset tag",
"changeset:version": "changeset version && pnpm format"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.29.7",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@types/node": "^22.19.0",
"@vitest/coverage-v8": "^3.2.4",
"jsrepo": "3.2.0",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"typedoc-material-theme": "^1.4.1"
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild"]
}
}