-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.25 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
{
"name": "@barelyhuman/tocolor",
"version": "0.2.4",
"type": "commonjs",
"keywords": [
"color",
"conversion",
"rgb to hex",
"hex to rgb",
"hsl to rgb",
"tiny"
],
"files": [
"src",
"dist"
],
"repository": "git@github.com:barelyhuman/tocolor.git",
"license": "MIT",
"author": "Reaper <ahoy@barelyhuman.dev> (https://reaper.is)",
"main": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": {
"require": "./dist/index.d.ts",
"import": "./dist/index.d.mts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"prebuild": "rimraf dist esm",
"build": "tsup",
"fix": "prettier --write .",
"size": "sizesnap",
"test": "uvu -r tsm tests"
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@barelyhuman/prettier-config": "^2.0.2",
"prettier": "^3.5.0",
"rimraf": "^6.0.1",
"sizesnap": "^0.2.1",
"tsm": "^2.3.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"uvu": "^0.5.6"
},
"publishConfig": {
"access": "public"
},
"sizesnap": {
"files": [
"./dist/**/*",
"./esm/**/*"
]
}
}