-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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": "imagejs",
"description": "ImageJS is a modern plug-and-play image optimization library that helps you serve optimized images to your users.",
"private": true,
"license": "GPL-3.0+",
"author": "Richard Hillebrand <me@mirasaki.dev> (https://mirasaki.dev/)",
"homepage": "https://imagejs.mirasaki.dev",
"repository": {
"type": "git",
"url": "https://github.com:Mirasaki-Development/imagejs.git"
},
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"clean": "turbo clean",
"dev": "DEBUG=imagejs,imagejs:* turbo dev",
"lint": "turbo lint",
"lint:fix": "turbo lint -- --fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prebuild": "turbo clean",
"release": "turbo build && changeset publish",
"test": "turbo test",
"typecheck": "turbo typecheck",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@imagejs/eslint-config": "workspace:*",
"prettier": "^3.2.5",
"turbo": "latest"
},
"packageManager": "pnpm@9.1.4",
"engines": {
"node": ">=18"
}
}