Skip to content

Commit f9c3880

Browse files
committed
chore: fix link to correct domain in package json
1 parent d5652e8 commit f9c3880

File tree

13 files changed

+281
-237
lines changed

13 files changed

+281
-237
lines changed

fixtures/sample/package.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,17 @@
55
"description": "",
66
"main": "index.js",
77
"type": "module",
8-
"author": {
9-
"name": "akfish",
10-
"email": "[email protected]"
8+
"author": "crutchcorn",
9+
"license": "MIT",
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/Vibrant-Colors/node-vibrant.git",
13+
"directory": "fixtures/sample"
14+
},
15+
"homepage": "https://vibrant.dev",
16+
"funding": {
17+
"type": "github",
18+
"url": "https://github.com/sponsors/crutchcorn"
1119
},
1220
"scripts": {
1321
"build": "tsc --noEmit",

packages/node-vibrant/package.json

Lines changed: 52 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,57 @@
22
"name": "node-vibrant",
33
"version": "4.0.0-alpha.5",
44
"description": "Extract prominent colors from an image. Supports both node and browser environment.",
5+
"license": "MIT",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/Vibrant-Colors/node-vibrant.git",
9+
"directory": "packages/node-vibrant"
10+
},
11+
"author": "crutchcorn",
12+
"homepage": "https://vibrant.dev",
13+
"funding": {
14+
"type": "github",
15+
"url": "https://github.com/sponsors/crutchcorn"
16+
},
17+
"keywords": [
18+
"color",
19+
"detection",
20+
"varation",
21+
"image",
22+
"picture",
23+
"canvas",
24+
"vibrant",
25+
"muted",
26+
"colour"
27+
],
28+
"scripts": {
29+
"build": "vite build",
30+
"test:lib": "vitest run",
31+
"test:lib:watch": "vitest watch",
32+
"test:eslint": "eslint ./src ./__tests__",
33+
"test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
34+
"test:types:ts49": "node ../../node_modules/typescript49/lib/tsc.js",
35+
"test:types:ts53": "node ../../node_modules/typescript53/lib/tsc.js",
36+
"test:types:ts54": "node ../../node_modules/typescript54/lib/tsc.js",
37+
"test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js",
38+
"test:types:ts56": "tsc"
39+
},
40+
"dependencies": {
41+
"@types/node": "^18.15.3",
42+
"@vibrant/core": "^4.0.0-alpha.4",
43+
"@vibrant/generator-default": "^4.0.0-alpha.4",
44+
"@vibrant/image-browser": "^4.0.0-alpha.4",
45+
"@vibrant/image-node": "^4.0.0-alpha.5",
46+
"@vibrant/quantizer-mmcq": "^4.0.0-alpha.4"
47+
},
48+
"devDependencies": {
49+
"@tanstack/config": "^0.15.0",
50+
"@vibrant/color": "^4.0.0-alpha.4",
51+
"@vitest/browser": "^2.1.8",
52+
"playwright": "^1.49.1",
53+
"vite": "^6.0.3",
54+
"vitest": "^2.1.8"
55+
},
556
"type": "module",
657
"types": "dist/esm/throw.d.ts",
758
"main": "dist/cjs/throw.cjs",
@@ -53,53 +104,5 @@
53104
"files": [
54105
"dist",
55106
"src"
56-
],
57-
"dependencies": {
58-
"@types/node": "^18.15.3",
59-
"@vibrant/core": "^4.0.0-alpha.4",
60-
"@vibrant/generator-default": "^4.0.0-alpha.4",
61-
"@vibrant/image-browser": "^4.0.0-alpha.4",
62-
"@vibrant/image-node": "^4.0.0-alpha.5",
63-
"@vibrant/quantizer-mmcq": "^4.0.0-alpha.4"
64-
},
65-
"devDependencies": {
66-
"@tanstack/config": "^0.15.0",
67-
"@vibrant/color": "^4.0.0-alpha.4",
68-
"@vitest/browser": "^2.1.8",
69-
"playwright": "^1.49.1",
70-
"vite": "^6.0.3",
71-
"vitest": "^2.1.8"
72-
},
73-
"scripts": {
74-
"build": "vite build",
75-
"test:lib": "vitest run",
76-
"test:lib:watch": "vitest watch",
77-
"test:eslint": "eslint ./src ./__tests__",
78-
"test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
79-
"test:types:ts49": "node ../../node_modules/typescript49/lib/tsc.js",
80-
"test:types:ts53": "node ../../node_modules/typescript53/lib/tsc.js",
81-
"test:types:ts54": "node ../../node_modules/typescript54/lib/tsc.js",
82-
"test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js",
83-
"test:types:ts56": "tsc"
84-
},
85-
"bugs": {
86-
"url": "https://github.com/akfish/node-vibrant/issues"
87-
},
88-
"homepage": "https://github.com/akfish/node-vibrant",
89-
"keywords": [
90-
"color",
91-
"detection",
92-
"varation",
93-
"image",
94-
"picture",
95-
"canvas",
96-
"vibrant",
97-
"muted",
98-
"colour"
99-
],
100-
"author": {
101-
"name": "akfish",
102-
"email": "[email protected]"
103-
},
104-
"license": "MIT"
107+
]
105108
}

packages/vibrant-color/package.json

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
"name": "@vibrant/color",
33
"version": "4.0.0-alpha.4",
44
"description": "Color utilities for vibrant",
5+
"author": "crutchcorn",
6+
"license": "MIT",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/Vibrant-Colors/node-vibrant.git",
10+
"directory": "packages/vibrant-color"
11+
},
12+
"homepage": "https://vibrant.dev",
13+
"funding": {
14+
"type": "github",
15+
"url": "https://github.com/sponsors/crutchcorn"
16+
},
517
"scripts": {
618
"build": "vite build",
719
"test:eslint": "eslint ./src",
@@ -12,6 +24,10 @@
1224
"test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js",
1325
"test:types:ts56": "tsc"
1426
},
27+
"devDependencies": {
28+
"@tanstack/config": "^0.15.0",
29+
"vite": "^6.0.3"
30+
},
1531
"type": "module",
1632
"types": "dist/esm/index.d.ts",
1733
"main": "dist/cjs/index.cjs",
@@ -34,19 +50,6 @@
3450
"dist",
3551
"src"
3652
],
37-
"author": {
38-
"name": "akfish",
39-
"email": "[email protected]"
40-
},
41-
"bugs": {
42-
"url": "https://github.com/akfish/node-vibrant/issues"
43-
},
44-
"homepage": "https://github.com/akfish/node-vibrant",
45-
"license": "MIT",
46-
"devDependencies": {
47-
"@tanstack/config": "^0.15.0",
48-
"vite": "^6.0.3"
49-
},
5053
"publishConfig": {
5154
"access": "public"
5255
}

packages/vibrant-core/package.json

Lines changed: 24 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
"name": "@vibrant/core",
33
"version": "4.0.0-alpha.4",
44
"description": "Core vibrant classes",
5+
"author": "crutchcorn",
6+
"license": "MIT",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/Vibrant-Colors/node-vibrant.git",
10+
"directory": "packages/vibrant-core"
11+
},
12+
"homepage": "https://vibrant.dev",
13+
"funding": {
14+
"type": "github",
15+
"url": "https://github.com/sponsors/crutchcorn"
16+
},
517
"scripts": {
618
"test:lib": "vitest run",
719
"test:lib:watch": "vitest watch",
@@ -14,6 +26,18 @@
1426
"test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js",
1527
"test:types:ts56": "tsc"
1628
},
29+
"dependencies": {
30+
"@vibrant/color": "^4.0.0-alpha.4",
31+
"@vibrant/generator": "^4.0.0-alpha.4",
32+
"@vibrant/image": "^4.0.0-alpha.4",
33+
"@vibrant/quantizer": "^4.0.0-alpha.4",
34+
"@vibrant/worker": "^4.0.0-alpha.4"
35+
},
36+
"devDependencies": {
37+
"@tanstack/config": "^0.15.0",
38+
"vite": "^6.0.3",
39+
"vitest": "^2.1.8"
40+
},
1741
"type": "module",
1842
"types": "dist/esm/index.d.ts",
1943
"main": "dist/cjs/index.cjs",
@@ -36,27 +60,6 @@
3660
"dist",
3761
"src"
3862
],
39-
"author": {
40-
"name": "akfish",
41-
"email": "[email protected]"
42-
},
43-
"bugs": {
44-
"url": "https://github.com/akfish/node-vibrant/issues"
45-
},
46-
"homepage": "https://github.com/akfish/node-vibrant",
47-
"license": "MIT",
48-
"dependencies": {
49-
"@vibrant/color": "^4.0.0-alpha.4",
50-
"@vibrant/generator": "^4.0.0-alpha.4",
51-
"@vibrant/image": "^4.0.0-alpha.4",
52-
"@vibrant/quantizer": "^4.0.0-alpha.4",
53-
"@vibrant/worker": "^4.0.0-alpha.4"
54-
},
55-
"devDependencies": {
56-
"@tanstack/config": "^0.15.0",
57-
"vite": "^6.0.3",
58-
"vitest": "^2.1.8"
59-
},
6063
"publishConfig": {
6164
"access": "public"
6265
}

packages/vibrant-generator-default/package.json

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
"name": "@vibrant/generator-default",
33
"version": "4.0.0-alpha.4",
44
"description": "Default generator that generates the original vibrant palette",
5+
"author": "crutchcorn",
6+
"license": "MIT",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/Vibrant-Colors/node-vibrant.git",
10+
"directory": "packages/vibrant-generator-default"
11+
},
12+
"homepage": "https://vibrant.dev",
13+
"funding": {
14+
"type": "github",
15+
"url": "https://github.com/sponsors/crutchcorn"
16+
},
517
"scripts": {
618
"build": "vite build",
719
"test:eslint": "eslint ./src",
@@ -12,6 +24,12 @@
1224
"test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js",
1325
"test:types:ts56": "tsc"
1426
},
27+
"dependencies": {
28+
"@tanstack/config": "^0.15.0",
29+
"@vibrant/color": "^4.0.0-alpha.4",
30+
"@vibrant/generator": "^4.0.0-alpha.4",
31+
"vite": "^6.0.3"
32+
},
1533
"type": "module",
1634
"types": "dist/esm/index.d.ts",
1735
"main": "dist/cjs/index.cjs",
@@ -34,21 +52,6 @@
3452
"dist",
3553
"src"
3654
],
37-
"author": {
38-
"name": "akfish",
39-
"email": "[email protected]"
40-
},
41-
"bugs": {
42-
"url": "https://github.com/akfish/node-vibrant/issues"
43-
},
44-
"homepage": "https://github.com/akfish/node-vibrant",
45-
"license": "MIT",
46-
"dependencies": {
47-
"@tanstack/config": "^0.15.0",
48-
"@vibrant/color": "^4.0.0-alpha.4",
49-
"@vibrant/generator": "^4.0.0-alpha.4",
50-
"vite": "^6.0.3"
51-
},
5255
"publishConfig": {
5356
"access": "public"
5457
}

packages/vibrant-generator/package.json

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
"name": "@vibrant/generator",
33
"version": "4.0.0-alpha.4",
44
"description": "Helpers and typings for writing a vibrant generator",
5+
"author": "crutchcorn",
6+
"license": "MIT",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/Vibrant-Colors/node-vibrant.git",
10+
"directory": "packages/vibrant-generator"
11+
},
12+
"homepage": "https://vibrant.dev",
13+
"funding": {
14+
"type": "github",
15+
"url": "https://github.com/sponsors/crutchcorn"
16+
},
517
"scripts": {
618
"build": "vite build",
719
"test:eslint": "eslint ./src",
@@ -12,6 +24,14 @@
1224
"test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js",
1325
"test:types:ts56": "tsc"
1426
},
27+
"dependencies": {
28+
"@vibrant/color": "^4.0.0-alpha.4",
29+
"@vibrant/types": "^4.0.0-alpha.4"
30+
},
31+
"devDependencies": {
32+
"@tanstack/config": "^0.15.0",
33+
"vite": "^6.0.3"
34+
},
1535
"type": "module",
1636
"types": "dist/esm/index.d.ts",
1737
"main": "dist/cjs/index.cjs",
@@ -34,23 +54,6 @@
3454
"dist",
3555
"src"
3656
],
37-
"author": {
38-
"name": "akfish",
39-
"email": "[email protected]"
40-
},
41-
"bugs": {
42-
"url": "https://github.com/akfish/node-vibrant/issues"
43-
},
44-
"homepage": "https://github.com/akfish/node-vibrant",
45-
"license": "MIT",
46-
"dependencies": {
47-
"@vibrant/color": "^4.0.0-alpha.4",
48-
"@vibrant/types": "^4.0.0-alpha.4"
49-
},
50-
"devDependencies": {
51-
"@tanstack/config": "^0.15.0",
52-
"vite": "^6.0.3"
53-
},
5457
"publishConfig": {
5558
"access": "public"
5659
}

0 commit comments

Comments
 (0)