-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.18 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
75
76
77
78
79
80
81
{
"name": "deeplink",
"displayName": "Deeplink",
"version": "0.0.14",
"description": "Pull down Pulumi projects directly from the Pulumi Console. Requires the companion desktop app for Pulumi called Deskypus.",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run clear && cross-env NODE_ENV=development run-p dev:*",
"dev:prepare": "esno scripts/prepare.ts",
"dev:background": "npm run build:background -- --mode development",
"dev:web": "vite",
"dev:js": "npm run build:js -- --mode development",
"build": "cross-env NODE_ENV=production run-s clear build:web build:prepare build:background build:js",
"build:firefox": "BUILD_FOR_FIREFOX=true npm run build",
"build:prepare": "esno scripts/prepare.ts",
"build:background": "vite build --config vite.config.background.ts",
"build:web": "vite build",
"build:js": "vite build --config vite.config.content.ts",
"pack": "cross-env NODE_ENV=production run-p pack:*",
"pack:zip": "rimraf extension.zip && jszip-cli add extension/* -o ./extension.zip",
"pack:crx": "crx pack extension -o ./extension.crx",
"pack:xpi": "cross-env WEB_EXT_ARTIFACTS_DIR=./ web-ext build --source-dir ./extension --filename extension.xpi --overwrite-dest",
"start:chromium": "web-ext run --start-url app.pulumi.com --source-dir ./extension --target=chromium",
"start:firefox": "cross-env WEB_EXT_FIREFOX_PROFILE=default-release web-ext run --start-url app.pulumi.com --source-dir ./extension --target=firefox-desktop",
"clear": "rimraf extension/dist extension/manifest.json extension.crx extension.xpi",
"lint": "eslint 'src/**/*.{json,ts,js,vue}'",
"release": "git fetch && npx standard-version"
},
"devDependencies": {
"@ffflorian/jszip-cli": "^3.4.1",
"@iconify/json": "2.2.437",
"@rollup/plugin-replace": "^6.0.0",
"@rushstack/eslint-patch": "1.15.0",
"@types/fs-extra": "11.0.4",
"@types/js-cookie": "3.0.6",
"@types/node": "24.10.9",
"@types/webextension-polyfill": "0.12.4",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"@unocss/reset": "^66.0.0",
"@vitejs/plugin-vue": "6.0.4",
"@vue/compiler-sfc": "3.5.27",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/eslint-config-typescript": "14.6.0",
"@vueuse/core": "14.1.0",
"chokidar": "5.0.0",
"cross-env": "10.1.0",
"crx": "5.0.1",
"eslint": "10.0.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-vue": "10.7.0",
"esno": "^4.0.0",
"fs-extra": "11.3.3",
"js-cookie": "3.0.7",
"kolorist": "1.8.0",
"nodemon": "^3.0.0",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"rimraf": "6.1.2",
"sass": "1.97.3",
"terser": "^5.16.5",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"unocss": "^66.0.0",
"unplugin-auto-import": "21.0.0",
"unplugin-icons": "23.0.1",
"unplugin-vue-components": "31.0.0",
"vite": "7.3.5",
"vue": "3.5.27",
"vue-demi": "0.14.10",
"web-ext": "9.2.0",
"webext-bridge": "6.0.1",
"webextension-polyfill": "0.12.0"
},
"resolutions": {
"update-notifier": "^7",
"ansi-align": "praneetloke/ansi-align.git"
}
}