-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.09 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
80
{
"name": "make-tints",
"version": "1.0.0-beta.1",
"packageManager": "pnpm@6.32.3",
"description": "[![NPM version](https://img.shields.io/npm/v/make-tints?color=a1b858&label=)](https://www.npmjs.com/package/make-tints)",
"keywords": [
"color",
"tones",
"tints",
"make-tints"
],
"homepage": "https://github.com/barelyhuman/make-tints#readme",
"bugs": {
"url": "https://github.com/barelyhuman/make-tints/issues"
},
"license": "MIT",
"author": "Reaper <ahoy@barelyhuman.dev>",
"repository": "git+https://github.com/barelyhuman/make-tints.git",
"funding": "https://github.com/sponsors/barelyhuman",
"main": "./index.cjs",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.mjs",
"types": "./index.d.ts"
}
},
"sideEffects": false,
"typesVersions": {
"*": {
"*": [
"./*",
"./index.d.ts"
]
}
},
"directories": {
"test": "test"
},
"scripts": {
"build": "rimraf dist; unbuild; nr copy",
"dev": "unbuild --stub",
"release": "bumpp --commit --tag; nr build; cd dist; pnpm publish; cd ..; nr size",
"start": "esno src/index.ts",
"test": "vitest",
"size": "sizesnap",
"fix": "prettier --write .",
"typecheck": "tsc --noEmit",
"copy": "shx cp package.json README.md LICENSE dist; json -I -f dist/package.json -e \"this.private=false; this.devDependencies=undefined; this.optionalDependencies=undefined; this.scripts=undefined; this.prettier=undefined; this.jest=undefined;this.directories=undefined;this.sizesnap=undefined\""
},
"prettier": "@barelyhuman/prettier-config",
"dependencies": {
"@barelyhuman/tocolor": "^0.0.8"
},
"sizesnap": {
"files": [
"./dist/*"
]
},
"devDependencies": {
"@antfu/ni": "^0.13.2",
"@babel/types": "^7.17.0",
"@barelyhuman/prettier-config": "^0.1.0",
"@types/node": "^17.0.23",
"bumpp": "^7.1.1",
"esno": "^0.14.1",
"json": "^11.0.0",
"pnpm": "^6.32.3",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"shx": "^0.3.4",
"sizesnap": "^0.1.1",
"typescript": "^4.6.2",
"unbuild": "^0.7.0",
"vite": "^2.8.6",
"vitest": "^0.7.10"
}
}