forked from Herysia/loa-details-log-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 979 Bytes
/
package.json
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
{
"name": "loa-details-log-parser",
"version": "1.3.3",
"description": "Log parser made for LOA Details",
"exports": {
".": {
"require": "./dist/parser.js",
"import": "./dist/parser.mjs",
"types": "./dist/parser.d.ts"
},
"./worker": {
"require": "./dist/file-parser-worker.js",
"import": "./dist/file-parser-worker.mjs",
"types": "./dist/file-parser-worker.d.ts"
}
},
"types": "dist/parser.d.ts",
"main": "./dist/parser.js",
"module": "./dist/parser.mjs",
"license": "MIT",
"scripts": {
"build": "tsup src/*.ts --format cjs,esm --dts --minify --clean",
"build:dev": "tsup src/*.ts --format cjs,esm --dts"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/lodash": "^4.14.182",
"@types/node": "^18.11.11",
"@types/uuid": "^9.0.0",
"tsup": "^6.5.0"
},
"dependencies": {
"dayjs": "^1.11.3",
"lodash": "^4.17.21",
"uuid": "^8.3.2"
}
}