-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "anki-reader",
"description": "A library for reading Anki apkg and collection files.",
"keywords": [
"anki",
"apkg",
"collection",
"reader",
"anki-reader",
"flashcards"
],
"version": "0.3.0",
"module": "./lib/src/index.js",
"main": "./lib/src/index.js",
"type": "module",
"devDependencies": {
"@types/node-fetch": "^2.6.7",
"@types/sql.js": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"blob-polyfill": "^7.0.20220408",
"bun-types": "latest",
"eslint": "^8.52.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"isomorphic-fetch": "^3.0.0",
"typescript": "^4.8.4",
"web-streams-polyfill": "^3.2.1"
},
"peerDependencies": {
"typescript": "^4.0.0"
},
"files": [
"lib/"
],
"types": "./lib/src/index.d.ts",
"dependencies": {
"@zip.js/zip.js": "^2.7.30",
"node-fetch": "2.6.1",
"sql.js": "^1.8.0"
},
"scripts": {
"build": "npx tsc -p tsconfig.json && npx ts-add-js-extension add --dir=lib"
},
"repository": {
"type": "git",
"url": "https://github.com/ewei068/anki-reader.git"
}
}