generated from foxglove/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
44
{
"name": "flatbuffers_reflection",
"version": "1.2.0",
"description": "Library for performing reflection on Flatbuffers in typescript",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jkuszmaul/flatbuffers_reflection.git"
},
"author": "James Kuszmaul",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist *.tsbuildinfo",
"prepack": "yarn build",
"build": "tsc -b tsconfig.dist.esm.json tsconfig.dist.cjs.json",
"lint": "eslint --report-unused-disable-directives --fix src",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@foxglove/eslint-plugin": "1.0.1",
"@foxglove/tsconfig": "2.0.0",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "8.57.0",
"eslint-plugin-es": "4.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.1.3",
"flatbuffers": "24.3.25",
"jest": "29.7.0",
"prettier": "3.2.5",
"rimraf": "5.0.7",
"ts-jest": "29.1.3",
"typescript": "5.4.5"
}
}