-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.05 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
{
"name": "@controlium/utils",
"version": "1.0.2-alpha.2",
"description": "Shared utilities for Controlium-based projects",
"type": "module",
"author": "Team Controllium contributors",
"contributors": [
"Mat Walker <v-mwalk@alexview.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TeamControlium/controlium-utils"
},
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist coverage",
"build:esm": "tsc -p tsconfig.build.json",
"build": "npm run clean && npm run build:esm",
"test": "vitest run",
"test:debug": "vitest run --reporter=verbose mock.spec",
"test:coverage": "vitest run --coverage",
"lint": "eslint 'src/**/*.ts' --fix",
"release": "semantic-release"
},
"keywords": [
"typescript",
"controlium",
"node",
"esm",
"logger",
"utilities"
],
"dependencies": {
"@types/jsonpath-plus": "^5.0.2",
"@types/lodash": "^4.14.195",
"@types/ps-tree": "^1.1.6",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"entities": "^6.0.1",
"json5": "^2.2.3",
"jsonpath-plus": "^10.3.0",
"jsonpointer": "^5.0.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.12",
"ps-tree": "^1.2.0",
"undici": "^8.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^8.0.0",
"semantic-release": "^24.0.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"publishConfig": {
"access": "public"
}
}