-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "colculate",
"version": "0.2.0",
"description": "A JavaScript library for CSS4 compliant color parsing and transformation",
"license": "MIT",
"author": "Jake Holland",
"homepage": "https://github.com/hollandjake/colculate#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hollandjake/colculate.git"
},
"bugs": {
"url": "https://github.com/hollandjake/colculate/issues"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"benchmark": "vitest bench --run",
"build": "tsup",
"clean": "gts clean",
"dev": "vitest",
"fix": "gts fix",
"lint": "gts lint",
"test": "vitest run",
"ci:publish": "pnpm build && changeset publish"
},
"types": "dist/index.d.ts",
"dependencies": {
"@petamoriken/float16": "^3.8.4"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@changesets/types": "^6.0.0",
"@codspeed/vitest-plugin": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@vitest/coverage-istanbul": "^1.2.0",
"gts": "^5.2.0",
"prettier": "^3.2.0",
"prettier-plugin-organize-imports": "^3.2.4",
"terser": "^5.26.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"keywords": [
"color",
"css",
"css4",
"parse",
"rgb",
"hex",
"hsl",
"hwb"
],
"engines": {
"node": ">=8.3.0"
},
"publishConfig": {
"access": "public"
},
"tsup": {
"entry": [
"src/index.ts"
],
"clean": true,
"sourcemap": true,
"dts": true,
"format": [
"cjs",
"esm"
],
"minify": true
}
}