-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
109 lines (109 loc) · 3.6 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@transcend-io/penumbra",
"version": "5.4.3",
"description": "Crypto streams for the browser.",
"main": "dist/main.penumbra.js",
"types": "ts-build/src/index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"prepare": "yarn build",
"####### Linting #######": "",
"lint": "yarn eslint src --ext .ts",
"####### Start #########": "",
"start:example": "yarn build:example && http-server example/build/ --port 8080 -o",
"start:demo": "yarn build:demo && http-server demo/build/ --port 8081 -o",
"####### Testing #######": "",
"test:interactive": "yarn start:demo",
"test:local": "karma start karma.local.js",
"test:local:rebuild": "yarn && karma start karma.local.js",
"test:browserstack": "karma start karma.browserstack.js",
"####### Build #######": "",
"clean": "rm -rf dist && rm -rf ts-build && rm -rf coverage",
"build": "yarn clean && mkdir -p dist && webpack --config webpack.prod.js && tsc",
"build:example": "rm -rf example/build && yarn build && mkdir -p example/build && cp example/*.* example/build/ && cp -a dist/. example/build/",
"build:demo": "rm -rf demo/build && yarn build && mkdir -p demo/build && cp demo/*.* demo/build/ && cp -a dist/. demo/build/",
"webpack:watch": "yarn clean && webpack --config webpack.dev.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transcend-io/penumbra.git"
},
"keywords": [
"browser",
"crypto",
"worker",
"encryption",
"decryption",
"stream",
"client"
],
"author": "Transcend Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/transcend-io/penumbra/issues"
},
"files": [
"dist/**/*",
"ts-build/**/*",
"src/**/*",
"tsconfig.json"
],
"homepage": "https://github.com/transcend-io/penumbra#readme",
"dependencies": {
"@transcend-io/conflux": "^4.1.0",
"@transcend-io/remote-web-streams": "1.0.5",
"comlink": "^4.4.1",
"core-js": "^3.34.0",
"crypto-browserify": "^3.12.0",
"mime-types": "^2.1.35",
"promise.allsettled": "^1.0.7",
"streamsaver": "^2.0.6",
"typedarray-to-buffer": "^4.0.0",
"web-streams-node": "^0.4.0",
"web-streams-polyfill": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.10.3",
"@types/tape": "^5.6.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@yarnpkg/sdks": "^3.1.0",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"depcheck": "^1.4.7",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"git-rev-sync": "^3.0.2",
"http-server": "^14.1.1",
"karma": "^6.4.2",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.2",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-tap": "^4.2.0",
"karma-webpack": "^4.0.2",
"nyc": "^15.1.0",
"prettier": "^3.1.0",
"tape": "^5.7.2",
"terser-webpack-plugin": "^2.3.8",
"typescript": "^5.3.2",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.10.0",
"worker-plugin": "^5.0.1"
},
"packageManager": "[email protected]"
}