-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "b2c-vs-extension",
"displayName": "B2C DX VSCE",
"description": "VS Code extension for B2C Commerce Cloud developer experience (Page Designer assistant, B2C CLI integration)",
"version": "0.0.3",
"publisher": "Salesforce",
"license": "Apache-2.0",
"repository": "SalesforceCommerceCloud/b2c-developer-tooling",
"homepage": "https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/tree/main/packages/b2c-vs-extension",
"bugs": "https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/issues",
"categories": [
"Other"
],
"dependencies": {
"@salesforce/b2c-tooling-sdk": "workspace:*"
},
"engines": {
"vscode": "^1.105.1"
},
"activationEvents": [
"*",
"onStartupFinished",
"onCommand:b2c-dx.openUI",
"onCommand:b2c-dx.handleStorefrontNextCartridge",
"onCommand:b2c-dx.promptAgent",
"onCommand:b2c-dx.listWebDav",
"onCommand:b2c-dx.scapiExplorer",
"onCommand:b2c-dx.odsManagement"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "b2c-dx.openUI",
"title": "Open Page Designer Assistant UI",
"category": "B2C DX - Page Designer Assistant"
},
{
"command": "b2c-dx.handleStorefrontNextCartridge",
"title": "Storefront Next Cartridge",
"category": "B2C DX - Page Designer Assistant"
},
{
"command": "b2c-dx.promptAgent",
"title": "Prompt Agent",
"category": "B2C DX"
},
{
"command": "b2c-dx.listWebDav",
"title": "List WebDAV",
"category": "B2C DX"
},
{
"command": "b2c-dx.scapiExplorer",
"title": "SCAPI API Explorer",
"category": "B2C DX"
},
{
"command": "b2c-dx.odsManagement",
"title": "On Demand Sandbox (ods) Management",
"category": "B2C DX"
}
]
},
"scripts": {
"build": "node scripts/esbuild-bundle.mjs",
"watch": "node scripts/esbuild-bundle.mjs --watch",
"vscode:prepublish": "pnpm run typecheck:agent && pnpm --filter @salesforce/b2c-tooling-sdk run build && node scripts/esbuild-bundle.mjs",
"package": "pnpm exec vsce package --no-dependencies",
"lint": "eslint",
"lint:agent": "eslint --quiet",
"typecheck:agent": "tsc -p . --noEmit --pretty false",
"format": "prettier --write src",
"format:check": "prettier --check src",
"test": "vscode-test",
"posttest": "pnpm run lint",
"analyze": "ANALYZE_BUNDLE=1 node scripts/esbuild-bundle.mjs"
},
"devDependencies": {
"@eslint/compat": "^1",
"@types/mocha": "^10.0.10",
"@types/node": "^22",
"@types/vscode": "^1.105.1",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.24.0",
"eslint": "^9",
"eslint-config-prettier": "^10",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}