-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.48 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
{
"name": "lightning-web-worker",
"version": "1.0.0",
"description": "Web Worker implementation running on Lightning platform (Locker Service)",
"main": "dist/client.js",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "run-p build:main build:example",
"build:main": "webpack",
"build:example": "webpack --config ./webpack.example.config.js --mode development",
"dist": "run-p dist:main dist:example",
"dist:main": "cp dist/* force-app/main/default/staticresources/LightningWebWorkerProxyJS",
"dist:example": "cp dist/server.* force-app/example/default/staticresources/MyWebWorkerProxy",
"push": "sfdx force:source:push",
"convert": "sfdx force:source:convert --rootdir force-app/main/default --outputdir pkg",
"deploy": "run-s convert deploy:pkg",
"deploy:pkg": "sfdx force:mdapi:deploy --deploydir pkg -w 10"
},
"author": "Shinichi Tomita <[email protected]>",
"license": "MIT",
"dependencies": {
"lightning-container": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}