-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.63 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
{
"name": "@rev-robotics/revlog-converter",
"version": "1.0.5",
"author": "REV Robotics",
"license": "BSD-3-Clause",
"description": "Tool to parse and convert .revlog files produced by REVLib's StatusLogger to .wpilog files",
"repository": {
"type": "git",
"url": "git+https://github.com/REVrobotics/node-revlog-converter.git"
},
"keywords": [
"REV",
"revlog",
"wpilog",
"FRC"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"revlog-converter": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build:esm": "tsc -p tsconfig.json",
"build:cli": "esbuild src/cli.ts --bundle --platform=node --format=esm --outfile=dist/cli.js --packages=external",
"build": "shx rm -rf ./dist && npm run build:esm && npm run build:cli",
"postbuild": "shx cp -r src/resources dist/resources && shx cp README.md dist/ && shx cp LICENSE dist/",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"lint:check": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"dev": "tsx src/cli.ts"
},
"devDependencies": {
"@types/node": "^20.19.37",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "^0.27.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}