This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.61 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
{
"name": "@vangware/ansi",
"description": "📟 Functional CLI ANSI formatter",
"version": "6.3.26",
"author": {
"email": "hello@vangware.com",
"name": "Vangware",
"url": "https://vangware.com"
},
"bugs": {
"email": "issues@vangware.com",
"url": "https://github.com/vangware/ansi/issues"
},
"dependencies": {
"@vangware/types": "^6.2.7"
},
"devDependencies": {
"@types/node": "^20.6.0",
"@vangware/configs": "^6.1.1",
"c8": "^8.0.1",
"eslint": "^8.49.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"simple-git-hooks": "^2.9.0",
"tsx": "^3.12.10",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"files": [
"dist"
],
"homepage": "https://ansi.vangware.com",
"keywords": [
"ansi",
"cli",
"colors",
"format",
"functional"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vangware/ansi.git"
},
"scripts": {
"clean": "rimraf ./dist",
"compile": "tsc --project ./tsconfig.dist.json",
"lint": "eslint {src,tests}",
"lint:fix": "eslint {src,tests} --fix",
"prepare": "simple-git-hooks",
"prepublishOnly": "run-s --print-label compile prettify",
"prettify": "prettier --ignore-path=.prettierignore --log-level=warn --write './dist/**/*.{js,ts}'",
"test": "NODE_OPTIONS='--loader tsx --no-warnings' c8 node --test ./tests/*.test.ts"
},
"sideEffects": false,
"simple-git-hooks": {
"pre-push": "$(pwd)/node_modules/.bin/run-s --print-label clean compile lint test"
},
"type": "module",
"types": "./dist/index.d.ts"
}