-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.79 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.79 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
{
"name": "officescripts-logging-framework",
"version": "2.1.4",
"description": "A lightweight, extensible logging framework for Office Scripts(ExcelScript), inspired by frameworks like Log4j. Add robust, structured logs to your Excel scripts with control over log levels, appenders, and error handling.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"acorn": "^8.14.1",
"acorn-walk": "^8.3.4",
"arg": "^4.1.3",
"create-require": "^1.1.1",
"diff": "^4.0.2",
"make-error": "^1.3.6",
"undici-types": "^6.21.0",
"v8-compile-cache-lib": "^3.0.1",
"yn": "^3.1.1"
},
"devDependencies": {
"jsdoc": "^4.0.4",
"prettier": "^3.5.3",
"strip-code": "^1.1.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.5",
"typedoc-theme-hierarchy": "^6.0.0",
"typescript": "^5.8.3"
},
"scripts": {
"setup": "npm install && npx tsc --init",
"build": "npm run copy:ts && npm run strip:testonly",
"copy:ts": "mkdir -p dist && rsync -av --include='*/' --include='*.ts' --exclude='*' src/ dist/",
"strip:testonly": "node scripts/strip-testonly.js",
"test": "npx ts-node --project tsconfig.test.json wrappers/main-wrapper.ts",
"debug": "npx ts-node --project tsconfig.test.json wrappers/main-wrapper.ts --debug",
"doc:ts:install": "npm install --save-dev typedoc",
"doc:ts:run": "npx typedoc src/logger.ts --out docs/typedoc --readme none --tsconfig tsconfig.json --theme default",
"cleanup-branches": "git branch --merged main | grep -v 'main$' | grep -v '^\\*' | xargs -n 1 git branch -d"
},
"keywords": [
"office-scripts",
"logging",
"logger",
"log4j",
"framework",
"typescript",
"excel",
"structured-logging"
],
"author": "David Leal <dleal67@gmail.com>",
"license": "MIT"
}