-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.83 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
{
"name": "@arylo-scripts/node-logger",
"version": "1.2.0",
"description": "Context-aware logging helpers for Node.js build scripts.",
"keywords": [
"node",
"logger",
"logging",
"async-local-storage",
"typescript"
],
"homepage": "https://github.com/arylo-scripts/node-logger#readme",
"bugs": {
"url": "https://github.com/arylo-scripts/node-logger/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arylo-scripts/node-logger.git"
},
"license": "MIT",
"author": "Arylo Yeung <arylo.open@gmail.com>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"fix": "concurrently -m 1 --timings npm:fix:*",
"fix:formatter": "oxfmt",
"fix:package": "sort-package-json",
"lint": "concurrently -m 1 --timings npm:lint:*",
"lint:formatter": "oxfmt --check",
"lint:oxlint": "oxlint",
"lint:package": "sort-package-json --check",
"lint:type-check": "tsc -p tsconfig.json --noEmit",
"prepare": "npm run build",
"test": "vitest run src"
},
"dependencies": {
"@arylo-scripts/function-control": "^1.1.1"
},
"devDependencies": {
"@arylo-scripts/tsconfig": "^1.0.0",
"@types/node": "^24.12.0",
"concurrently": "^8.2.2",
"oxfmt": "^0.35.0",
"oxlint": "^1.58.0",
"rimraf": "^6.1.3",
"sort-package-json": "^4.0.0",
"typescript": "~5.9.3",
"vitest": "^4.1.11"
},
"packageManager": "npm@11.6.2",
"engines": {
"node": ">=13.10.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}