-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.86 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
{
"name": "color-map-rainbow",
"version": "3.0.0",
"description": "Create rainbow of colors",
"homepage": "https://github.com/cyberuni/color-map-rainbow",
"bugs": {
"url": "https://github.com/cyberuni/color-map-rainbow/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cyberuni/color-map-rainbow.git"
},
"license": "MIT",
"author": {
"name": "Homa Wong (unional)",
"email": "homawong@gmail.com"
},
"type": "module",
"exports": {
"types": "./esm/index.d.ts",
"import": "./esm/index.js",
"require": "./cjs/index.js",
"default": "./cjs/index.js"
},
"main": "./cjs/index.js",
"types": "./esm/index.d.ts",
"files": [
"cjs",
"dist",
"esm",
"ts",
"!**/*.spec.*"
],
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"check": "biome check",
"check:fix": "biome check --fix",
"clean": "rimraf .reports cjs coverage dist esm",
"coverage": "vitest run --coverage",
"cs": "changeset",
"depcheck": "depcheck",
"format": "biome format . --write",
"lint": "biome lint .",
"nuke": "pnpm clean && rimraf node_modules",
"prepare": "husky",
"release": "changeset publish",
"test": "vitest run",
"typecheck": "tsc",
"verify": "run-p lint build depcheck typecheck coverage",
"version": "changeset version",
"watch": "vitest"
},
"dependencies": {
"color-map": "^2.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@changesets/cli": "^3.0.0",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@repobuddy/biome": "^2.3.1",
"@types/node": "^26.2.0",
"@vitest/coverage-v8": "^4.1.10",
"ansi-styles": "^6.2.1",
"depcheck": "^1.4.3",
"husky": "^9.1.7",
"npm-run-all2": "^9.0.3",
"rimraf": "^6.1.3",
"tsdown": "^0.22.14",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@11.24.0",
"engines": {
"node": ">= 20"
}
}