@img/colour 1.0.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.cjs ADDED
@@ -0,0 +1 @@
1
+ module.exports = require("./color.cjs").default;
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@img/colour",
3
+ "version": "1.0.0-rc.0",
4
+ "description": "The ESM-only 'color' package made compatible for use with CommonJS runtimes",
5
+ "license": "MIT",
6
+ "main": "index.cjs",
7
+ "authors": [
8
+ "Heather Arthur <fayearthur@gmail.com>",
9
+ "Josh Junon <josh@junon.me>",
10
+ "Maxime Thirouin",
11
+ "Dyma Ywanov <dfcreative@gmail.com>",
12
+ "LitoMore (https://github.com/LitoMore)"
13
+ ],
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
17
+ "files": [
18
+ "color.cjs"
19
+ ],
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "type": "commonjs",
24
+ "keywords": [
25
+ "color",
26
+ "colour",
27
+ "cjs",
28
+ "commonjs"
29
+ ],
30
+ "scripts": {
31
+ "build": "esbuild node_modules/color/index.js --bundle --platform=node --outfile=color.cjs",
32
+ "test": "node --test"
33
+ },
34
+ "devDependencies": {
35
+ "color": "5.0.0",
36
+ "color-convert": "3.1.0",
37
+ "color-name": "2.0.0",
38
+ "color-string": "2.1.0",
39
+ "esbuild": "^0.25.9"
40
+ }
41
+ }