-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.56 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.56 KB
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
{
"name": "@transcend-io/penumbra",
"version": "8.1.4",
"description": "Crypto streams for the browser.",
"type": "module",
"main": "./dist/main.penumbra.umd.cjs",
"types": "./dist/main.penumbra.d.cts",
"exports": {
"import": {
"types": "./dist/main.penumbra.d.ts",
"default": "./dist/main.penumbra.js"
},
"require": {
"types": "./dist/main.penumbra.d.cts",
"default": "./dist/main.penumbra.umd.cjs"
}
},
"scripts": {
"build": "vite build",
"postbuild": "scripts/postbuild.ts",
"test": "scripts/run-tests.sh",
"test:chromium": "scripts/run-tests.sh --browsers chromium",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:prettier": "prettier --check . --log-level warn",
"lint:eslint": "eslint .",
"lint:types": "tsc --build",
"lint:knip": "knip",
"format": "prettier --write . --log-level warn && doctoc README.md --maxlevel 3",
"rebuild-fixtures": "tsx fixtures/rebuild-fixtures.ts",
"prepublishOnly": "pnpm lint && pnpm run build"
},
"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"
],
"homepage": "https://github.com/transcend-io/penumbra#readme",
"dependencies": {
"@transcend-io/conflux": "6.0.1",
"@transcend-io/encrypt-web-streams": "1.0.3",
"comlink": "^4.4.1",
"mime": "^4.0.7",
"remote-web-streams": "^0.2.0",
"streamsaver": "^2.0.6",
"uint8array-extras": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@tsconfig/strictest": "^2.0.5",
"@types/mocha": "^10.0.10",
"@types/node": "^22.17.1",
"@web/dev-server-esbuild": "^1.0.4",
"@web/test-runner": "^0.20.2",
"@web/test-runner-playwright": "^0.11.1",
"doctoc": "^2.2.1",
"eslint": "^9.32.0",
"eslint-plugin-unicorn": "^60.0.0",
"knip": "^5.62.0",
"playwright": "^1.57.0",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.3.2",
"typescript-eslint": "^8.38.0",
"unplugin-dts": "1.0.0-beta.6",
"vite": "^7.3.0",
"webpack": "^5.104.1"
},
"pnpm": {
"overrides": {
"braces": ">=3.0.3",
"micromatch": ">=4.0.8"
}
},
"packageManager": "pnpm@10.13.1+sha256.0f9ed48d808996ae007835fb5c4641cf9a300def2eddc9e957d9bbe4768c5f28"
}