-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.3 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
{
"name": "@vlocode/vlocity-deploy",
"version": "1.27.5",
"description": "Hyper fast Salesforce/Vlocity datapack deployment library",
"keywords": [
"Vlocity",
"Salesforce",
"Datapacks",
"Deployment"
],
"main": "lib/index.js",
"publishConfig": {
"main": "lib/index.js",
"typings": "lib/index.d.ts"
},
"readme": "../SITE.md",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "pnpm build:schema && tsc",
"build:schema": "ts-json-schema-generator --path './src/**/*.ts' --tsconfig ./tsconfig.json --type DatapackExportDefinition --no-type-check -o ./src/export/exportDefinitions.schema.json --no-ref-encode",
"clean": "shx rm -rf ./lib ./coverage ./tsconfig.tsbuildinfo './*.tgz' './src/**/*.{d.ts,ts.map,js.map,js}'",
"watch": "tsc -w",
"pack": "pnpm run build && pnpm pack",
"prepublish": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codeneos/vlocode.git"
},
"author": {
"name": "Peter van Gulik",
"email": "[email protected]"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.json",
"patches/*.patch"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Codeneos/vlocode/issues"
},
"homepage": "https://github.com/Codeneos/vlocode#readme",
"devDependencies": {
"@types/fs-extra": "^11",
"@types/jest": "^29.5.11",
"@types/luxon": "^3.3.0",
"@types/node": "^20.4.2",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"ts-json-schema-generator": "^2.3.0",
"typescript": "5.1.6"
},
"dependencies": {
"@types/unidecode": "^0.1.3",
"@vlocode/core": "workspace:*",
"@vlocode/omniscript": "workspace:*",
"@vlocode/salesforce": "workspace:*",
"@vlocode/util": "workspace:*",
"@vlocode/vlocity": "workspace:*",
"fs-extra": "^11",
"luxon": "^3.4.4",
"moment": "^2.29.4",
"sass": "^1.59.3",
"unidecode": "^1.1.0"
},
"publisher": "curlybracket",
"gitHead": "f16fa9dcbf7ef17328047ecb07ab4a7e6a94140a"
}