@phun-ky/moebius 2.0.1 → 2.0.3
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/README.md +1 -1
- package/dist/moebius.js +1 -1
- package/package.json +48 -50
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
|
|
41
41
|
## Demo
|
|
42
42
|
|
|
43
|
-
You can check out a working
|
|
43
|
+
You can check out a working CodePen where you can [adjust settings and colors here](https://codepen.io/phun-ky/full/LYqQMqL), or the website [moebius.wtf](https://moebius.wtf/).
|
|
44
44
|
|
|
45
45
|
## Install
|
|
46
46
|
|
package/dist/moebius.js
CHANGED
package/package.json
CHANGED
|
@@ -1,40 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phun-ky/moebius",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "Automatically generate color palettes!",
|
|
5
|
-
"main": "dist/moebius.js",
|
|
6
|
-
"types": "dist/moebius.d.ts",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"publishConfig": {
|
|
9
|
-
"access": "public"
|
|
10
|
-
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "npm run clean && npm run rollup",
|
|
13
|
-
"clean": "rm -rf dist dts",
|
|
14
|
-
"commit": "npx git-cz",
|
|
15
|
-
"dev": "npx browser-sync start --server 'dev' --files 'dist' --ss 'dist'",
|
|
16
|
-
"docs:gen": "node ./node_modules/.bin/typedoc",
|
|
17
|
-
"release": "release-it",
|
|
18
|
-
"rollup": "rollup -c",
|
|
19
|
-
"prerollup:dev": "npm run clean",
|
|
20
|
-
"rollup:dev": "rollup -c -w",
|
|
21
|
-
"style:code": "npx putout src",
|
|
22
|
-
"style:format": "./node_modules/.bin/eslint -c ./eslint.config.mjs src --fix && ./node_modules/.bin/prettier --write ./eslint.config.mjs src",
|
|
23
|
-
"style:lint": "./node_modules/.bin/eslint -c ./eslint.config.mjs src && ./node_modules/.bin/prettier --check src",
|
|
24
|
-
"test": "npm run test:unit",
|
|
25
|
-
"pretest:ci": "rm -rf coverage && mkdir -p coverage",
|
|
26
|
-
"test:ci": "glob -c \"node --import tsx --import global-jsdom/register --test --no-warnings --experimental-test-coverage --test-reporter=cobertura --test-reporter-destination=coverage/cobertura-coverage.xml --test-reporter=spec --test-reporter-destination=stdout\" \"./src/**/__tests__/**/*.[jt]s\"",
|
|
27
|
-
"test:unit": "glob -c \"node --import tsx --import global-jsdom/register --test --no-warnings\" \"./src/**/__tests__/**/*.[jt]s\""
|
|
28
|
-
},
|
|
29
|
-
"files": [
|
|
30
|
-
"/dist/moebius.js",
|
|
31
|
-
"/dist/moebius.js.map",
|
|
32
|
-
"/dist/moebius.d.ts"
|
|
33
|
-
],
|
|
34
|
-
"repository": {
|
|
35
|
-
"type": "git",
|
|
36
|
-
"url": "git+ssh://git@github.com/phun-ky/moebius.git"
|
|
37
|
-
},
|
|
38
5
|
"keywords": [
|
|
39
6
|
"css",
|
|
40
7
|
"design",
|
|
@@ -62,14 +29,53 @@
|
|
|
62
29
|
"chromatic",
|
|
63
30
|
"analogous"
|
|
64
31
|
],
|
|
65
|
-
"
|
|
66
|
-
"license": "MIT",
|
|
32
|
+
"homepage": "https://github.com/phun-ky/moebius#readme",
|
|
67
33
|
"bugs": {
|
|
68
34
|
"url": "https://github.com/phun-ky/moebius/issues"
|
|
69
35
|
},
|
|
70
|
-
"
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+ssh://git@github.com/phun-ky/moebius.git"
|
|
39
|
+
},
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"author": "Alexander Vassbotn Røyne-Helgesen <alexander+github.com@phun-ky.net>",
|
|
42
|
+
"type": "module",
|
|
43
|
+
"main": "dist/moebius.js",
|
|
44
|
+
"types": "dist/moebius.d.ts",
|
|
45
|
+
"files": [
|
|
46
|
+
"/dist/moebius.js",
|
|
47
|
+
"/dist/moebius.js.map",
|
|
48
|
+
"/dist/moebius.d.ts"
|
|
49
|
+
],
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "npm run clean && npm run rollup",
|
|
52
|
+
"clean": "rm -rf dist dts",
|
|
53
|
+
"commit": "npx git-cz",
|
|
54
|
+
"dev": "npx browser-sync start --server 'dev' --files 'dist' --ss 'dist'",
|
|
55
|
+
"docs:gen": "node ./node_modules/.bin/typedoc",
|
|
56
|
+
"release": "release-it",
|
|
57
|
+
"rollup": "rollup -c",
|
|
58
|
+
"prerollup:dev": "npm run clean",
|
|
59
|
+
"rollup:dev": "rollup -c -w",
|
|
60
|
+
"style:code": "npx putout src",
|
|
61
|
+
"style:format": "./node_modules/.bin/eslint -c ./eslint.config.mjs src --fix && ./node_modules/.bin/prettier --write ./eslint.config.mjs src",
|
|
62
|
+
"style:lint": "./node_modules/.bin/eslint -c ./eslint.config.mjs src && ./node_modules/.bin/prettier --check src",
|
|
63
|
+
"test": "npm run test:unit",
|
|
64
|
+
"pretest:ci": "rm -rf coverage && mkdir -p coverage",
|
|
65
|
+
"test:ci": "glob -c \"node --import tsx --import global-jsdom/register --test --no-warnings --experimental-test-coverage --test-reporter=cobertura --test-reporter-destination=coverage/cobertura-coverage.xml --test-reporter=spec --test-reporter-destination=stdout\" \"./src/**/__tests__/**/*.[jt]s\"",
|
|
66
|
+
"test:unit": "glob -c \"node --import tsx --import global-jsdom/register --test --no-warnings\" \"./src/**/__tests__/**/*.[jt]s\""
|
|
67
|
+
},
|
|
68
|
+
"config": {
|
|
69
|
+
"commitizen": {
|
|
70
|
+
"path": "./node_modules/git-cz"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"@phun-ky/typeof": "^1.2.10",
|
|
75
|
+
"chroma-js": "^3.1.2",
|
|
76
|
+
"nearest-color": "^0.4.4"
|
|
77
|
+
},
|
|
71
78
|
"devDependencies": {
|
|
72
|
-
"@phun-ky/eslint-config": "^0.1.6",
|
|
73
79
|
"@release-it/conventional-changelog": "^10.0.1",
|
|
74
80
|
"@rollup/plugin-commonjs": "^28.0.3",
|
|
75
81
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
@@ -79,14 +85,13 @@
|
|
|
79
85
|
"@types/node": "^22.15.3",
|
|
80
86
|
"cobertura": "^1.0.1",
|
|
81
87
|
"eslint": "^9.20.0",
|
|
82
|
-
"eslint-config-
|
|
88
|
+
"eslint-config-phun-ky": "^1.0.0",
|
|
83
89
|
"git-cz": "^4.9.0",
|
|
84
90
|
"glob": "^11.0.2",
|
|
85
91
|
"global-jsdom": "^26.0.0",
|
|
86
92
|
"jsdom": "^26.1.0",
|
|
87
93
|
"prettier": "3.5.3",
|
|
88
94
|
"putout": "^40.0.22",
|
|
89
|
-
"quibble": "^0.9.1",
|
|
90
95
|
"release-it": "^19.0.2",
|
|
91
96
|
"remark-gfm": "^4.0.1",
|
|
92
97
|
"remark-github": "^12.0.0",
|
|
@@ -108,18 +113,11 @@
|
|
|
108
113
|
"typescript": "^5.7.3",
|
|
109
114
|
"unified-prettier": "^2.0.1"
|
|
110
115
|
},
|
|
111
|
-
"dependencies": {
|
|
112
|
-
"@phun-ky/typeof": "^1.2.10",
|
|
113
|
-
"chroma-js": "^3.1.2",
|
|
114
|
-
"nearest-color": "^0.4.4"
|
|
115
|
-
},
|
|
116
|
-
"config": {
|
|
117
|
-
"commitizen": {
|
|
118
|
-
"path": "./node_modules/git-cz"
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
116
|
"engines": {
|
|
122
117
|
"node": ">=22.9.0",
|
|
123
118
|
"npm": ">=11.0.0"
|
|
119
|
+
},
|
|
120
|
+
"publishConfig": {
|
|
121
|
+
"access": "public"
|
|
124
122
|
}
|
|
125
123
|
}
|