forked from st3v3nmw/obsidian-spaced-repetition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.1 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
{
"name": "obsidian-spaced-repetition",
"version": "1.6.2",
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
"main": "main.js",
"scripts": {
"dev": "esbuild src/main.ts --bundle --external:obsidian --format=cjs --sourcemap=inline --outfile=build/main.js --watch",
"build": "esbuild src/main.ts --bundle --external:obsidian --format=cjs --sourcemap=inline --sources-content=false --outfile=build/main.js",
"test": "jest"
},
"keywords": [],
"author": "Stephen Mwangi",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.3.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"moment": "^2.29.1",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"ts-jest": "^27.0.4",
"tslib": "^2.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"esbuild": "^0.12.22",
"pagerank.js": "^1.0.2"
}
}