-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
82 lines (82 loc) · 2.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
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
74
75
76
77
78
79
80
81
82
{
"name": "create-foxglove-extension",
"version": "1.0.3",
"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 --report-unused-disable-directives .",
"lint": "eslint --report-unused-disable-directives --fix .",
"prepack": "yarn build",
"prepublishOnly": "yarn lint:ci && yarn test",
"test": "jest",
"watch": "tsc --watch"
},
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@foxglove/eslint-plugin": "^0.21.0",
"@types/jest": "^29.4.0",
"@types/mkdirp": "^2.0.0",
"@types/ncp": "^2",
"@types/node": "^18.14.6",
"@types/node-fetch": "^2.6.2",
"@types/rimraf": "^4.0.5",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"css-loader": "6.7.3",
"esbuild": "0.17.11",
"esbuild-jest": "0.5.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "29.7.0",
"prettier": "^2.8.4",
"style-loader": "3.3.1",
"tmp": "0.2.3",
"typescript": "4.9.5",
"yarn": "1.22.19"
},
"dependencies": {
"clean-webpack-plugin": "4.0.0",
"commander": "10.0.0",
"jszip": "3.10.1",
"mkdirp": "2.1.5",
"ncp": "2.0.0",
"node-fetch": "2.6.9",
"path-browserify": "1.0.1",
"rimraf": "4.3.1",
"sanitize-filename": "1.6.3",
"ts-loader": "9.5.1",
"webpack": "5.94.0"
}
}