-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.55 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
{
"name": "@wuespace/parcel-optimizer-electron-require",
"description": "Parcel Optimizer Plugin that polyfills the require function in an electron context",
"license": "MIT",
"version": "0.18.1",
"homepage": "https://telestion.wuespace.de/",
"source": "src/optimizer.ts",
"main": "dist/optimizer.js",
"files": [
"dist"
],
"engines": {
"parcel": "2.x"
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"lint": "eslint",
"check": "tsc --noEmit",
"style": "pnpm -w style",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wuespace/telestion-client.git",
"directory": "packages/parcel-optimizer-electron-require"
},
"bugs": {
"url": "https://github.com/wuespace/telestion-client/issues"
},
"author": {
"name": "wuespace",
"email": "[email protected]",
"url": "https://www.wuespace.de/"
},
"contributors": [
{
"name": "Liam Franssen",
"email": "[email protected]",
"url": "https://github.com/leecemin"
},
{
"name": "Pablo Klaschka",
"email": "[email protected]",
"url": "https://github.com/pklaschka"
},
{
"name": "Jan Tischhöfer",
"email": "[email protected]",
"url": "https://github.com/jantischhoefer"
},
{
"name": "Ludwig Richter",
"email": "[email protected]",
"url": "https://github.com/fussel178"
}
],
"dependencies": {
"@parcel/plugin": "^2.5.0"
},
"devDependencies": {
"@parcel/types": "2.12.0",
"@parcel/core": "2.12.0"
},
"publishConfig": {
"access": "public"
}
}