-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.81 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.81 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "styled-json-console",
"description": "Custom Node.js Console that styles your JSON output",
"version": "0.0.0",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"console",
"ansi",
"colors",
"json"
],
"author": {
"email": "eric@webdeveric.com",
"name": "Eric King",
"url": "http://webdeveric.com/"
},
"type": "module",
"sideEffects": false,
"main": "./dist/createConsole.js",
"types": "./dist/createConsole.d.ts",
"engines": {
"node": ">=20.12.0"
},
"exports": {
".": {
"types": "./dist/createConsole.d.ts",
"import": "./dist/createConsole.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/webdeveric/styled-json-console.git"
},
"bugs": {
"url": "https://github.com/webdeveric/styled-json-console/issues"
},
"homepage": "https://github.com/webdeveric/styled-json-console/#readme",
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"scripts": {
"clean": "rimraf ./dist/ ./cache/",
"prebuild": "pnpm clean",
"build": "tsc --build tsconfig.src.json --force",
"typecheck": "tsc --build tsconfig.json --verbose",
"lint": "eslint ./*.{js,cjs,mjs,ts,cts,mts} ./src/ ./example/ --ext .ts",
"test": "vitest --typecheck",
"coverage": "vitest run --coverage --typecheck",
"validate": "validate-package-exports --check",
"spellcheck": "cspell './{.github,src,example,test}/**/*.{ts,json}' './*.{md,mjs,mts}' './package.json' --no-progress",
"prepublishOnly": "pnpm typecheck && pnpm spellcheck && pnpm lint && pnpm coverage && pnpm build && pnpm validate",
"format": "prettier --write ./*.{js,json,md} ./src/",
"prepare": "husky"
},
"prettier": "@webdeveric/prettier-config",
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/types": "^20.5.0",
"@types/node": "^22.19.15",
"@vitest/coverage-v8": "^4.1.2",
"@webdeveric/eslint-config-ts": "^0.12.0",
"@webdeveric/prettier-config": "^0.4.0",
"commitlint": "^20.5.0",
"commitlint-plugin-cspell": "^0.7.0",
"conventional-changelog-conventionalcommits": "^9.3.1",
"cspell": "^9.7.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"typescript": "^6.0.2",
"validate-package-exports": "^0.23.0",
"vitest": "^4.1.2"
}
}