This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.97 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "image-processing-pipeline",
"private": true,
"version": "4.2.0",
"description": "An image build orchestrator for the modern web",
"author": "Marcus Cemes",
"license": "MIT",
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build-vendor": "pnpm -r run build-vendor",
"clean": "pnpx rimraf \"./packages/*/*.tsbuildinfo\" \"./packages/*/dist\" \"./**/node_modules/\"",
"fix:crlf": "crlf --set=LF ./packages/*/dist/**/*",
"fix:format": "prettier --write \"packages/*/src/**/*.{ts,tsx,json}\"",
"fix:lint": "eslint . --fix --ext .ts,.tsx",
"start": "cd packages/cli && node -r ts-node/register -r tsconfig-paths/register src/bin",
"start:debug": "cd packages/cli && node --inspect-brk -r ts-node/register -r tsconfig-paths/register src/bin",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"test:format": "prettier --check \"packages/*/src/**/*.{ts,tsx,json}\"",
"test:lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"crlf": "^1.1.1",
"eslint": "^8.15.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-react": "^7.29.4",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=10.18"
},
"homepage": "https://ipp.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/MarcusCemes/image-processing-pipeline"
},
"bugs": {
"url": "https://github.com/MarcusCemes/image-processing-pipeline/issues"
},
"keywords": [
"pipeline",
"responsive",
"libvips",
"webp",
"modern",
"frontend",
"cli",
"image",
"processing"
]
}