forked from JonasKruckenberg/imagetools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.17 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
{
"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": "^2.29.7",
"@eslint/js": "^9.33.0",
"@rollup/plugin-typescript": "^12.0.0",
"eslint": "^9.33.0",
"prettier": "^3.0.3",
"rollup": "^4.22.4",
"tslib": "^2.6.1",
"typedoc": "^0.27.9",
"typedoc-plugin-markdown": "^4.4.2",
"typescript": "^5.1.6",
"typescript-eslint": "^8.16.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "pnpm@10.18.0",
"engines": {
"pnpm": "^10.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"jest"
]
},
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}