This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 KB
/
package.json
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
{
"name": "better-color-tools",
"description": "Fast, minimal color conversion and tools for JS and Sass. Supports sRGB, Oklab, Oklch, Display P3, and more.",
"version": "0.12.3",
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
},
"repository": {
"type": "git",
"url": "https://github.com/drwpow/better-color-tools"
},
"keywords": [
"color",
"colour",
"typescript",
"oklab",
"oklch",
"contrast",
"rgb"
],
"homepage": "https://github.com/drwpow/better-color-tools",
"license": "MIT",
"type": "module",
"style": "./index.scss",
"sass": "./index.scss",
"main": "./dist/index.min.js",
"scripts": {
"build": "del dist && tsc && npm run bundle && cp dist/index.d.ts dist/index.min.d.ts && cp dist/index.min.js www/src/lib/better.min.js",
"bundle": "esbuild dist/index.js --bundle --minify --outfile=dist/index.min.js --format=esm",
"changeset": "changeset",
"dev": "tsc -w",
"lint": "eslint \"src/**/*.{js,ts}\"",
"prepublish": "npm run build",
"test": "vitest run",
"test:benchmark": "vitest bench"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"culori": "^3.2.0",
"del-cli": "^4.0.1",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"sass": "^1.67.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4"
}
}