-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 942 Bytes
/
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
{
"name": "precise-colors",
"version": "0.9.5",
"description": "This library converts colors between various models without performing any rounding.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/king8fisher/precise-colors.git"
},
"scripts": {
"build": "tsup",
"test": "vitest --run",
"wtest": "vitest",
"prepublishOnly": "pnpm build"
},
"keywords": [
"colors",
"round",
"conversion"
],
"author": "Anton Veretennikov (king8fisher)",
"license": "MIT",
"packageManager": "[email protected]+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247",
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}