-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "tasai",
"version": "1.1.0",
"description": "The most complete and flexible ansi coloring library",
"main": "./dist/index.js",
"author": "DidaS",
"license": "Apache-2.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js",
"macro": "./dist/index.macro.js",
"require": null
},
"./package.json": "./package.json"
},
"engines": {
"bun": ">=1.0.20",
"node": ">=18.0.0"
},
"files": [
"./dist"
],
"scripts": {
"check": "eslint \"src/**/*.ts\"",
"build": "rm -rf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Didas-git/tasai"
},
"homepage": "https://github.com/Didas-git/tasai",
"bugs": {
"url": "https://github.com/Didas-git/tasai/issues"
},
"keywords": [
"tasai",
"colors",
"ansi",
"console",
"terminal",
"colours",
"bun",
"bunjs"
],
"devDependencies": {
"@stylistic/eslint-plugin": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"bun-types": "^1.0.20",
"eslint": "^8.55.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"mitata": "^0.1.6",
"typescript": "^5.3.2"
}
}