-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.08 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
{
"name": "easton",
"version": "1.0.1",
"description": "Use ANSI styles and HEX/RGB in CLI",
"main": "./CJS/index.cjs",
"module": "./ESM/index.js",
"type": "module",
"exports": {
"import": "./ESM/index.js",
"require": "./CJS/index.cjs"
},
"files": [
"CJS/index.cjs",
"CJS/styles.cjs",
"ESM/index.js",
"ESM/styles.js",
"README.md",
"LICENSE"
],
"license": "MIT",
"author": "love1ace",
"repository": {
"type": "git",
"url": "https://github.com/love1ace/easton.git"
},
"keywords": [
"easton",
"chalk",
"ansi-colors",
"cli",
"love1ace"
],
"bugs": {
"url": "https://github.com/love1ace/easton/issues"
},
"homepage": "https://github.com/love1ace/easton#readme",
"dependencies": {
"hex-to-ansi": "^1.0.1",
"rgb-to-ansi": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.25.9",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
},
"scripts": {
"test": "jest"
}
}