-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.06 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
45
46
{
"name": "@foxglove/template-typescript",
"private": true,
"version": "0.0.1",
"description": "",
"license": "",
"repository": {
"type": "git",
"url": "https://github.com/foxglove/template.git"
},
"author": {
"name": "Foxglove",
"email": "[email protected]",
"url": "https://foxglove.dev/"
},
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist *.tsbuildinfo",
"prepack": "tsc -b tsconfig.json tsconfig.cjs.json",
"build": "tsc -b tsconfig.json tsconfig.cjs.json",
"lint": "eslint --fix .",
"lint:ci": "eslint .",
"test": "jest"
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@foxglove/eslint-plugin": "2.0.0",
"@foxglove/tsconfig": "2.0.0",
"@types/jest": "29.5.14",
"eslint": "9.14.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0"
},
"packageManager": "[email protected]"
}