-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
43 lines (43 loc) · 1.13 KB
/
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
38
39
40
41
42
43
{
"name": "meter-core",
"version": "0.0.0",
"private": true,
"type": "commonjs",
"exports": {
"./*": {
"require": "./dist/*.js",
"import": "./dist/*.mjs",
"types": "./dist/*.d.ts"
}
},
"scripts": {
"format": "prettier --write \"**/*.{js,json,ts}\"",
"build": "tsc --noEmit && tsup --minify",
"build:debug": "tsc --noEmit && tsup",
"build:test": "tsup src/test.ts src/logger/logger.ts --clean --no-config --sourcemap",
"test": "tsc --noEmit && tsup src/test.ts --clean --no-config --sourcemap && node --trace-warnings ./dist/test.js"
},
"dependencies": {
"axios": "^1.3.6",
"cap": "^0.2.1",
"is-admin": "^3.0.0",
"lz4-napi": "^2.2.0",
"oodle": "github:Mathicha/oodle",
"raw-socket-sniffer": "github:Herysia/raw-socket-sniffer",
"snappyjs": "^0.7.0",
"tiny-typed-emitter": "^2.1.0"
},
"devDependencies": {
"@tsconfig/node18": "^2.0.0",
"@tsconfig/strictest": "^2.0.1",
"@types/node": "^20.12.12",
"prettier": "^2.8.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"overrides": {
"cap": {
"nan": "^2.19.0"
}
}
}