-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "rollup-typescript-webworkers",
"version": "0.0.1",
"description": "Example of using RollupJS + TypeScript + WebWorkers",
"author": "Dario Segura",
"license": "MIT",
"entry": "src/index.ts",
"main": "dist/next/index.js",
"module": "dist/next/index.js",
"iife": "dist/iife/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "npm-run-all --parallel build:**",
"build:all": "rollup --config",
"build:types": "tsc --declaration --declarationMap --emitDeclarationOnly --outDir ./dist/types",
"start": "cross-env TARGET='debug' rollup --config --watch",
"watch": "rollup --config --watch",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"prepack": "npm-run-all build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.10.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-live-server": "^1.0.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-web-worker-loader": "^1.3.0",
"tslib": "^1.12.0",
"typescript": "^3.9.2"
}
}