-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
{
"name": "tintify",
"description": "Tintify tints your untinted terminal",
"version": "1.1.0",
"author": "Unarray",
"license": "MIT",
"homepage": "https://github.com/Unarray/Tintify#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Unarray/Tintify.git"
},
"bugs": {
"url": "https://github.com/Unarray/Tintify/issues"
},
"keywords": [
"color",
"terminal",
"ansi",
"tint"
],
"files": [
"dist",
"package.json"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "npx nodemon --exec ts-node -T -r tsconfig-paths/register ./src/index.ts",
"build": "tsup src/index.ts --minify --format cjs,esm --dts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest --ui"
},
"devDependencies": {
"@bluzzi/eslint-config": "^0.9.0",
"@types/node": "^18.15.11",
"@vitest/ui": "^0.29.8",
"eslint": "^8.38.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.29.8"
},
"eslintConfig": {
"extends": "@bluzzi",
"rules": {
"no-control-regex": "off"
}
},
"tsup": {
"clean": true
}
}