forked from lichtblick-suite/create-lichtblick-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "lichtblick-panel-extension",
"displayName": "Create Lichtblick Extension",
"version": "1.1.0",
"publisher": "Lichtblick",
"description": "Create and package Lichtblick extensions",
"license": "MIT",
"keywords": [
"lichtblick",
"robotics",
"ros",
"visualization"
],
"repository": {
"type": "git",
"url": "https://github.com/lichtblick-suite/create-lichtblick-extension"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"create-lichtblick-extension": "dist/bin/create-lichtblick-extension.js",
"lichtblick-extension": "dist/bin/lichtblick-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": ">= 18.18.0"
},
"devDependencies": {
"@lichtblick/eslint-plugin": "2.0.3",
"@lichtblick/tsconfig": "1.0.2",
"@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.38.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"style-loader": "4.0.0",
"tmp": "0.2.4",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
},
"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.105.3"
},
"packageManager": "yarn@4.5.1"
}