-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.11 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
{
"name": "anki-apkg-parser",
"type": "module",
"version": "1.0.0",
"description": "parse apkg files from anki app",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"test": "ava --timeout=2m"
},
"esModuleInterop": true,
"keywords": [
"anki",
"apkg"
],
"author": "Igor Razumov",
"license": "ISC",
"ava": {
"files": [
"test/**/*.test.ts"
],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"dependencies": {
"fs": "^0.0.1-security",
"fstream": "^1.0.12",
"google-proto-files": "^4.0.0",
"mime": "^3.0.0",
"mime-types": "^2.1.35",
"protobufjs": "^7.2.5",
"protocol-buffers": "^5.0.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.6",
"unzipit": "^1.4.3",
"zstd-codec": "^0.1.4"
},
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^18.15.11",
"@types/unzipper": "^0.10.8",
"ava": "^5.2.0",
"cross-env": "^7.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.2.2"
}
}