-
-
Notifications
You must be signed in to change notification settings - Fork 760
/
package.json
36 lines (36 loc) · 1.17 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
{
"name": "jimp-monorepo",
"private": true,
"packageManager": "[email protected]",
"description": "The jimp monorepo.",
"repository": "jimp-dev/jimp",
"engines": {
"node": ">=18"
},
"author": "Andrew Lisowski <[email protected]>",
"scripts": {
"build": "turbo run build build:browser --filter=!@jimp/docs",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test -- --watch=false",
"test:browser": "turbo run test:browser -- --watch=false",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "pnpm build && auto shipit",
"generate-package": "turbo gen package",
"generate-plugin": "turbo gen plugin",
"check-updates": "ncu --packageFile '{,*/**/}package.json'"
},
"devDependencies": {
"@auto-it/all-contributors": "^11.2.1",
"@auto-it/first-time-contributor": "^11.2.1",
"@auto-it/released": "^11.2.1",
"@jimp/config-eslint": "workspace:*",
"@jimp/config-typescript": "workspace:*",
"@turbo/gen": "^2.1.1",
"auto": "^11.2.1",
"npm-check-updates": "^17.1.1",
"prettier": "^3.3.3",
"turbo": "^2.1.1"
}
}