-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "secretdrop.io",
"version": "1.0.0",
"description": "Public key encryption for everyone at https://secretdrop.io",
"repository": {
"type": "git",
"url": "git+https://github.com/Calvin-LL/secretdrop.io.git"
},
"author": "Calvin Liang",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/Calvin-LL/secretdrop.io/issues"
},
"homepage": "https://github.com/Calvin-LL/secretdrop.io#readme",
"type": "module",
"scripts": {
"test": "vitest run && playwright test",
"test:unit": "vitest",
"test:e2e": "playwright test",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/vue": "^5.0.9",
"@fontsource/roboto": "^5.0.8",
"@fontsource/roboto-mono": "^5.0.8",
"@fontsource/roboto-slab": "^5.0.11",
"astro": "^5.6.1",
"elliptic": "^6.5.4",
"file-icon-vectors": "^1.0.0",
"file-saver": "^2.0.5",
"file-selector": "^2.1.2",
"filesize.js": "^2.0.0",
"lzutf8": "^0.6.3",
"material-icons": "^1.13.10",
"mime": "^4.0.7",
"uuid": "^11.1.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@playwright/test": "^1.37.1",
"@types/elliptic": "^6.4.14",
"@types/file-saver": "^2.0.5",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.14.1",
"sass": "^1.66.1",
"typescript": "^5.2.2",
"vitest": "^3.1.1",
"vue-tsc": "^2.2.8"
}
}