-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 836 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 836 Bytes
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
{
"name": "@windsland52/maa-log-runtime",
"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 })\""
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"@windsland52/maa-log-kernel": "workspace:*"
},
"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-runtime"
}
}