-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
73 lines (73 loc) · 1.72 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "create-foxglove-extension",
"version": "1.0.4",
"publisher": "foxglove",
"description": "Create and package Foxglove extensions",
"license": "MIT",
"keywords": [
"foxglove",
"robotics",
"ros",
"visualization"
],
"repository": {
"type": "git",
"url": "https://github.com/foxglove/create-foxglove-extension.git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"create-foxglove-extension": "dist/bin/create-foxglove-extension.js",
"foxglove-extension": "dist/bin/foxglove-extension.js"
},
"files": [
"dist",
"template",
"template/.gitignore",
"tsconfig"
],
"scripts": {
"build": "tsc",
"lint:ci": "eslint .",
"lint": "eslint .",
"prepack": "yarn build",
"prepublishOnly": "yarn lint:ci && yarn test",
"test": "jest",
"watch": "tsc --watch"
},
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@foxglove/eslint-plugin": "2.0.0",
"@foxglove/tsconfig": "2.0.0",
"@types/jest": "29.5.14",
"@types/ncp": "2.0.8",
"@types/node": "22.9.0",
"@types/node-fetch": "2.6.12",
"@types/tmp": "0.2.6",
"css-loader": "7.1.2",
"eslint": "9.15.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"style-loader": "4.0.0",
"tmp": "0.2.3",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"typescript-eslint": "8.15.0"
},
"dependencies": {
"clean-webpack-plugin": "4.0.0",
"commander": "12.1.0",
"jszip": "3.10.1",
"mkdirp": "3.0.1",
"ncp": "2.0.0",
"node-fetch": "2.7.0",
"path-browserify": "1.0.1",
"rimraf": "6.0.1",
"sanitize-filename": "1.6.3",
"ts-loader": "9.5.1",
"webpack": "5.96.1"
},
"packageManager": "[email protected]"
}