-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 2.23 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
{
"name": "dat-webext",
"version": "0.2.3",
"description": "",
"scripts": {
"build:test": "browserify -r fs:graceful-fs -e test/test.ts -p tsify -g @sammacbeth/libdwebify -t [ babelify --global ] > test/test-bundle.js && browserify -e ./web-api/web-api.js > test/web-api.js",
"test": "npm run build:test && tape-ext ./test/manifest.json",
"build": "npm run build:background && npm run build:webapi",
"build:background": "browserify -r fs:graceful-fs -e background/index.ts -p tsify -g @sammacbeth/libdwebify -t [ babelify --global ] > addon/background.js",
"build:webapi": "browserify -e ./web-api/web-api.js > addon/web-api.js",
"start": "cross-env MOZ_DISABLE_CONTENT_SANDBOX=1 web-ext run -s addon --firefox=firefoxdeveloperedition --no-reload -u about:debugging --pref extensions.experiments.enabled=true",
"postinstall": "patch-package && bash ./postinstall.sh",
"package": "web-ext build -s ./addon/",
"version": "node update_version.js && git add addon/manifest.json"
},
"author": "Sam Macbeth",
"license": "MIT",
"dependencies": {
"@cliqz-oss/dexie": "^2.0.4",
"@geut/sodium-javascript-plus": "0.0.6",
"@sammacbeth/dat-api-core": "0.8.0",
"@sammacbeth/dat-api-v1": "0.8.0",
"@sammacbeth/dat-api-v1wrtc": "0.8.0",
"@sammacbeth/dat-archive": "0.8.0",
"@sammacbeth/dat-protocol-handler": "0.8.0",
"@sammacbeth/dat-types": "^0.8.0",
"@sammacbeth/dat2-api": "0.8.1",
"@sammacbeth/libdweb": "0.0.13",
"@sammacbeth/utp-wasm": "^1.1.5",
"base64-js": "^1.3.1",
"bulma": "^0.8.2",
"dat-dns": "^4.1.2",
"end-of-stream": "^1.4.4",
"mime": "^2.4.5",
"parse-dat-url": "^3.0.3",
"random-access-idb": "^1.2.1",
"random-access-idb-mutable-file": "^0.3.0",
"random-access-memory": "^3.1.1",
"spanan": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@sammacbeth/browserify": "^16.5.1",
"@sammacbeth/libdwebify": "^1.0.2",
"@sammacbeth/tape-ext": "0.5.1",
"@types/node": "^13.13.5",
"babel-plugin-module-resolver": "^4.0.0",
"babelify": "^10.0.0",
"cross-env": "^7.0.2",
"patch-package": "^6.2.2",
"tsify": "^4.0.1",
"typescript": "^3.8.3",
"web-ext": "^4.2.0",
"web-ext-types": "^3.2.1"
}
}