-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 4.64 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 4.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "@phun-ky/moebius",
"version": "2.0.42",
"description": "@phun-ky/moebius is a versatile JavaScript library that automatically generates visually pleasing and customizable color palettes from a given base color. Whether you're building data visualizations, UIs, or design systems, Möbius offers various harmony modes (analogous, complementary, triadic, and more), smooth interpolation, luminance shifts, and diverging palette generation - all with extensive color format support and intuitive API design.",
"keywords": [
"color",
"colors",
"palette",
"palettes",
"color-palette",
"color-generator",
"palette-generator",
"color-scheme",
"color-schemes",
"design",
"ui-design",
"css",
"javascript",
"typescript",
"color-theory",
"color-harmony",
"analogous",
"complementary",
"split-complementary",
"triad",
"triadic",
"tetrad",
"tetradic",
"pentad",
"pentadic",
"hexad",
"hexadic",
"monochrome",
"monochromatic",
"interpolate",
"luminance",
"diverging",
"chroma",
"chromatic",
"color-manipulation",
"color-utils",
"accessibility",
"a11y",
"visualization",
"data-visualization",
"theme-generator",
"web-design",
"creative-coding"
],
"homepage": "https://github.com/phun-ky/moebius#readme",
"bugs": {
"url": "https://github.com/phun-ky/moebius/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/phun-ky/moebius.git"
},
"license": "MIT",
"author": "Alexander Vassbotn Røyne-Helgesen <alexander+github.com@phun-ky.net>",
"type": "module",
"main": "dist/moebius.js",
"types": "dist/moebius.d.ts",
"files": [
"/dist/moebius.js",
"/dist/moebius.js.map",
"/dist/moebius.d.ts"
],
"scripts": {
"build": "npm run clean && npm run rollup",
"clean": "rm -rf dist dts",
"commit": "npx git-cz",
"docs:gen": "node ./node_modules/.bin/typedoc",
"predocs:dev": "npm run docs:gen",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"release": "release-it",
"rollup": "rollup -c",
"prewatch": "npm run clean",
"watch": "rollup -c -w",
"style:code": "npx putout src",
"style:format": "./node_modules/.bin/eslint -c ./eslint.config.mjs src --fix && ./node_modules/.bin/prettier --write ./eslint.config.mjs src",
"style:lint": "./node_modules/.bin/eslint -c ./eslint.config.mjs src && ./node_modules/.bin/prettier --check src",
"test": "npm run test:unit",
"pretest:ci": "rm -rf coverage && mkdir -p coverage",
"test:ci": "glob-bin -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\"",
"test:unit": "glob-bin -c \"node --import tsx --import global-jsdom/register --test --no-warnings\" \"./src/**/__tests__/**/*.[jt]s\""
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"dependencies": {
"@phun-ky/typeof": "^2.1.6",
"chroma-js": "^3.1.2",
"nearest-color": "^0.4.4"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.6",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@types/chroma-js": "^3.1.2",
"@types/node": "^25.5.0",
"cobertura": "^1.0.1",
"eslint": "^9.39.4",
"eslint-config-phun-ky": "^1.0.35",
"git-cz": "^4.9.0",
"glob-bin": "^1.0.0",
"global-jsdom": "^28.0.0",
"jsdom": "^28.1.0",
"prettier": "3.8.1",
"putout": "^42.2.2",
"release-it": "^19.0.6",
"remark-github": "^12.0.0",
"remark-toc": "^9.0.0",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.4.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.3.1",
"tsx": "^4.20.6",
"typedoc": "^0.28.17",
"typedoc-plugin-frontmatter": "^1.3.1",
"typedoc-plugin-markdown": "^4.2.3",
"typedoc-plugin-mdn-links": "^5.0.10",
"typedoc-plugin-no-inherit": "^1.4.0",
"typedoc-plugin-remark": "^2.0.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.2",
"unified-prettier": "^2.0.1",
"vitepress": "^1.6.4",
"vitepress-plugin-group-icons": "^1.6.5"
},
"engines": {
"node": ">=22.9.0",
"npm": ">=11.0.0"
},
"publishConfig": {
"access": "public"
}
}