-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "tinyrainbow",
"version": "1.2.0",
"description": "A small library to print colourful messages.",
"type": "module",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest --single-thread",
"prepare": "husky install",
"release": "bumpp package.json --commit --push --tag && tsup && clean-publish"
},
"main": "./dist/node.js",
"module": "./dist/browser.js",
"browser": "./dist/browser.js",
"types": "./dist/node.d.ts",
"exports": {
"types": "./dist/node.d.ts",
"node": "./dist/node.js",
"browser": "./dist/browser.js",
"import": "./dist/browser.js",
"default": "./dist/browser.js"
},
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tinylibs/tinyrainbow.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tinylibs/tinyrainbow/issues"
},
"homepage": "https://github.com/tinylibs/tinyrainbow#readme",
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@size-limit/time": "^8.2.4",
"@types/node": "^18.15.11",
"bumpp": "^9.1.0",
"changelogithub": "^0.12.7",
"clean-publish": "^4.2.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0",
"prettier": "^2.8.7",
"size-limit": "^8.2.4",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"keywords": [
"colors",
"tty"
],
"engines": {
"node": ">=14.0.0"
}
}