-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.56 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
{
"publisher": "SpotSnel",
"name": "tailscale-extension",
"displayName": "Tailscale",
"description": "Lets you securely connect to your containers without exposing them to the public internet",
"version": "0.0.5",
"icon": "icon.png",
"license": "Apache-2.0",
"engines": {
"podman-desktop": "^0.16.0"
},
"main": "./dist/extension.js",
"source": "./src/extension.ts",
"contributes": {
"configuration": {
"title": "Tailscale"
}
},
"scripts": {
"build": "rollup --bundleConfigAsCjs --config rollup.config.js --compact --environment BUILD:production",
"watch": "rollup --bundleConfigAsCjs --config rollup.config.js -w",
"lint:check": "eslint . --ext js,ts",
"lint:fix": "eslint . --fix --ext js,ts",
"format:check": "prettier --check src/**",
"format:fix": "prettier --write src/**",
"desk:build": "ts-node-esm ./scripts/run.mts build",
"desk:prepare": "ts-node-esm ./scripts/run.mts prepare",
"desk:run": "ts-node-esm ./scripts/run.mts run"
},
"dependencies": {},
"devDependencies": {
"@podman-desktop/api": "next",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"compare-versions": "^6.0.0-rc.1",
"eslint": "^8.36.0",
"prettier": "^2.8.4",
"rollup": "^3.18.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}