-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) 路 1.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) 路 1.34 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
{
"name": "themes",
"version": "0.0.0",
"private": true,
"description": "Central source of official themes.",
"license": "Apache-2.0",
"repository": "git@github.com:vivliostyle/themes.git",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"bump": "pnpm run top && pnpm exec changeset version",
"dev": "pnpm -r --parallel run dev",
"example:build": "pnpm -r example:build",
"example:capture-pdf": "node scripts/capture-pdf.ts",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "husky",
"test": "pnpm -r run test",
"top": "node scripts/top.ts",
"typecheck": "tsc --noEmit",
"validate": "pnpm -r validate"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@napi-rs/canvas": "^0.1.56",
"@types/node": "^24.0.0",
"@vivliostyle/cli": "11.3.1",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"oxfmt": "0.61.0",
"oxlint": "1.76.0",
"oxlint-tsgolint": "7.0.2001",
"pdfjs-dist": "4.6.82",
"pnpm": "12.3.4",
"typescript": "^5.3.3"
},
"lint-staged": {
"*": [
"oxlint --fix --no-error-on-unmatched-pattern",
"oxfmt --no-error-on-unmatched-pattern"
]
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@12.3.4"
}