-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.53 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
{
"name": "react-image-optimizer-monorepo",
"private": true,
"type": "module",
"version": "0.0.0",
"description": "Monorepo for react-image-optimizer: browser-only image resizing, converting, and compressing to satisfy strict upload requirements (government forms, job portals, etc).",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspace=packages/core && npm run build --workspace=packages/react",
"dev": "npm run dev --workspace=examples/basic-app",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "npm run typecheck --workspaces --if-present",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run build && changeset publish",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Polymorph0us/react-image-optimizer"
}
}