-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "@marko19907/string-to-color",
"author": "Marko19907",
"description": "Generates visually appealing and configurable colors and gradients based on input",
"license": "MIT",
"version": "1.0.2",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"scripts": {
"dev": "vitest",
"build": "tsup",
"test": "vitest run",
"coverage": "vitest run --coverage",
"release": "yarn run build && changeset publish",
"lint": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/Marko19907/string-to-color.git"
},
"homepage": "https://github.com/Marko19907/string-to-color",
"keywords": [
"string-to-color",
"colors",
"gradients",
"configurable",
"color-generator"
],
"dependencies": {
"esm-seedrandom": "3.0.5-esm.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@vitest/coverage-v8": "^4.0.16",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"bugs": {
"url": "https://github.com/Marko19907/string-to-color/issues"
}
}