-
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1 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
{
"name": "imagetools",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm build && pnpm publish -r",
"build": "pnpm run --recursive --filter !example-* build",
"test": "pnpm run --recursive test",
"coverage": "pnpm run --recursive coverage",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"doc": "pnpm run --filter imagetools-core build && typedoc"
},
"devDependencies": {
"@changesets/cli": "^3.0.0",
"@eslint/js": "^10.0.1",
"@rollup/plugin-typescript": "^12.3.0",
"eslint": "^10.4.1",
"prettier": "^3.8.3",
"rollup": "^4.61.1",
"tslib": "^2.8.1",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^11.0.0"
}
}