-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 KB
/
package.json
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
{
"name": "theme",
"description": "Central source of official themes.",
"version": "0.0.0",
"scripts": {
"bootstrap": "lerna bootstrap && lerna link",
"build": "run-s build:*",
"build:package": "lerna run build",
"build:capture-pdf": "node --loader ts-node/esm --no-warnings scripts/capture-pdf.mts",
"format": "lerna exec fixpack && yarn top",
"lint": "run-p lint:*",
"lint:theme": "lerna exec vivliostyle-theme-scripts validate --scope '@vivliostyle/theme-*'",
"release": "lerna publish from-package",
"test": "lerna run test",
"top": "node -r ts-node/register scripts/top.ts",
"bump": "yarn top && yarn doctoc README.md && changeset version"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@napi-rs/canvas": "^0.1.56",
"@types/node-fetch": "^2.5.7",
"@types/pdfjs-dist": "^2.10.378",
"@uetchy/doctoc": "^1.5.0",
"esm": "^3.2.25",
"fixpack": "^4.0.0",
"globby": "^11.0.1",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"lint-staged": {
"*.md": [
"doctoc -p",
"git add"
]
},
"repository": "[email protected]:vivliostyle/theme.git",
"license": "Apache-2.0",
"engines": {
"node": ">= 12"
},
"private": true,
"workspaces": [
"packages/*",
"packages/*/*"
],
"overrides": {
"canvas": "../@napi-rs/canvas"
}
}