-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "@livesession/electron-cookies",
"version": "1.0.1",
"description": "",
"author": "LiveSession",
"repository": {
"type": "git",
"url": "git+https://github.com/livesession/electron-cookies.git"
},
"bugs": {
"url": "https://github.com/livesession/electron-cookies/issues"
},
"homepage": "https://github.com/livesession/electron-cookies#readme",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"targets": {
"main": {
"includeNodeModules": {
"electron": false
}
}
},
"alias": {
"tough-cookie": "./node_modules/tough-cookie"
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build"
},
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@types/tough-cookie": "^4.0.2",
"parcel": "^2.7.0",
"typescript": "^4.8.3"
},
"dependencies": {
"tough-cookie": "^4.1.2",
"tough-cookie-web-storage-store": "git+https://github.com/livesession/tough-cookie-web-storage-store.git"
},
"peerDependencies": {
"electron": "*"
}
}