-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.63 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
{
"name": "@desmos/esbuild-worker-dedupe",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/desmosinc/esbuild-worker-dedupe"
},
"files": [
"**/*.ts",
"**/*.json",
"build"
],
"main": "build/index.js",
"license": "MIT",
"scripts": {
"test": "ts-node --transpile-only test/test.ts",
"prepare": "husky install",
"watch": "esbuild ./src/index.js --outdir=build --bundle --platform=node --target=node16 --external:source-map --main-fields=main --sourcemap=linked --watch",
"build-plugin": "rm -rf build && esbuild src/index.ts --outdir=build --bundle --platform=node --target=node16 --external:source-map --main-fields=main --sourcemap=linked && cp src/types.ts build/index.d.ts",
"example": "./bundle.ts --main example/main.ts --worker example/worker.ts --outfile example/bundle.js && open example/index.html",
"prepublishOnly": "yarn test && yarn build-plugin"
},
"dependencies": {
"acorn": "^8.7.0",
"acorn-walk": "^8.2.0",
"escope": "^3.6.0",
"magic-string": "^0.26.1",
"mkdirp": "^1.0.4",
"source-map": "^0.7.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"yargs": "^17.4.0"
},
"peerDependencies": {
"esbuild": "^0.19.10"
},
"devDependencies": {
"@types/estree": "^0.0.51",
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.23",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"esbuild": "^0.19.10",
"eslint": "^8.12.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.6.1",
"puppeteer": "^19.5.2"
}
}