-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.58 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
83
84
85
86
87
{
"name": "@vlocode/cli",
"version": "1.27.5",
"description": "Hyper fast Salesforce/Vlocity datapack deployment CLI",
"keywords": [
"Vlocity",
"Salesforce",
"Datapacks",
"Deployment"
],
"main": "lib/index.js",
"bin": {
"vlocode": "bin/run"
},
"publishConfig": {
"main": "lib/index.js",
"typings": "lib/index.d.ts"
},
"readme": "./README.md",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"watch": "tsc -w",
"watch-webpack": "webpack --watch --config webpack/webpack.ts",
"build": "tsc -b",
"build-webpack": "webpack --config webpack/webpack.ts",
"pack": "pnpm run prepublish && pnpm run pack-only",
"prepublish": "pnpm run clean && pnpm run build-webpack && tsc",
"pack-only": "pnpm pack",
"clean": "shx rm -rf ./dist ./lib ./.ts-temp './*.tgz' './src/**/*.{d.ts,ts.map,js.map,js}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codeneos/vlocode.git"
},
"author": {
"name": "Peter van Gulik",
"email": "[email protected]"
},
"files": [
"/lib",
"/dist",
"/bin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Codeneos/vlocode/issues"
},
"homepage": "https://github.com/Codeneos/vlocode#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.2",
"@types/node": "^20.4.2",
"@vlocode/apex": "workspace:*",
"@vlocode/core": "workspace:*",
"@vlocode/omniscript": "workspace:*",
"@vlocode/salesforce": "workspace:*",
"@vlocode/util": "workspace:*",
"@vlocode/vlocity": "workspace:*",
"@vlocode/vlocity-deploy": "workspace:*",
"chalk": "^4.1.1",
"commander": "^11.1.0",
"esbuild-loader": "^4.0.3",
"glob": "^7.1.7",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"log-symbols": "^4.0.0",
"shx": "^0.3.4",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-glob-entry": "^2.1.1",
"webpack-merge": "^5.9.0",
"webpack-node-externals": "^3.0.0"
},
"publisher": "curlybracket",
"gitHead": "f16fa9dcbf7ef17328047ecb07ab4a7e6a94140a"
}