-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.88 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.88 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
{
"name": "@windsland52/maa-log-tools",
"version": "1.0.0",
"type": "module",
"private": false,
"scripts": {
"typecheck": "tsc -p ./tsconfig.json",
"build": "pnpm run clean && tsc -p ./tsconfig.build.json && node ../../scripts/fix-esm-imports.mjs ./dist",
"clean": "node -e \"require('node:fs').rmSync('dist',{ recursive: true, force: true })\""
},
"bin": {
"mla-log-tools": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cli": {
"import": "./dist/cli.js",
"types": "./dist/cli.d.ts"
},
"./node-input": {
"import": "./dist/nodeInput.js",
"types": "./dist/nodeInput.d.ts"
},
"./task-identity": {
"import": "./dist/taskIdentity.js",
"types": "./dist/taskIdentity.d.ts"
},
"./next-list-presentation": {
"import": "./dist/nextListPresentation.js",
"types": "./dist/nextListPresentation.d.ts"
},
"./task-execution-order": {
"import": "./dist/taskExecutionOrder.js",
"types": "./dist/taskExecutionOrder.d.ts"
},
"./node-execution-name": {
"import": "./dist/nodeExecutionName.js",
"types": "./dist/nodeExecutionName.d.ts"
},
"./node-execution-timeline": {
"import": "./dist/nodeExecutionTimeline.js",
"types": "./dist/nodeExecutionTimeline.d.ts"
}
},
"dependencies": {
"@windsland52/maa-log-adapter": "workspace:*",
"@windsland52/maa-log-kernel": "workspace:*",
"@windsland52/maa-log-parser": "workspace:*",
"@windsland52/maa-log-runtime": "workspace:*",
"fflate": "^0.8.2"
},
"engines": {
"node": ">=24.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/MaaXYZ/MaaLogAnalyzer",
"directory": "packages/maa-log-tools"
}
}