-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.05 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.05 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
{
"name": "@jetstreamapp/soql-parser-js",
"version": "7.1.0",
"description": "Salesforce.com SOQL parser and composer",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs"
}
},
"scripts": {
"clean": "rm -rf ./dist/*",
"prebuild": "npm run clean",
"build": "npm-run-all build:esm build:lwc build:cjs build:cli build:declarations",
"build:esm": "esbuild src/index.ts --bundle --outfile=dist/esm/index.mjs --minify --format=esm --target=es2022",
"build:lwc": "esbuild src/index.ts --bundle --outfile=dist/lwc/index.js --format=esm --target=es2022",
"build:cjs": "esbuild src/index.ts --bundle --outfile=dist/cjs/index.js --minify --format=cjs --target=es2022",
"build:cli": "esbuild cli/index.ts --bundle --outfile=dist/cli/index.js --minify --format=cjs --target=es2022 --platform=node",
"build:declarations": "tsc --project tsconfig.json",
"tsc": "tsc",
"release": "release-it",
"copy-tc-to-docs": "tsx ./tasks/copy-test-cases-to-docs.ts",
"test": "vitest --passWithNoTests --testTimeout 10000",
"test:watch": "jest --watch",
"soql-parser-js": "node ./bin"
},
"author": "Austin Turner <paustint@gmail.com>",
"license": "MIT",
"bin": {
"soql-parser-js": "bin/soql-parser-js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**",
"bin/**",
"AUTHORS.md",
"CHANGELOG.md",
"LICENSE.txt",
"package.json",
"README.md"
],
"devDependencies": {
"@types/node": "^25.5.0",
"esbuild": "^0.27.4",
"lodash.get": "^4.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"keywords": [
"soql",
"salesforce",
"parse",
"compose",
"parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jetstreamapp/soql-parser-js.git"
}
}