-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
91 lines (91 loc) · 3.14 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
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
{
"version": "1.2.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test",
"lint": "dts lint",
"prepare": "dts build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "fsrs.js",
"description": "FSRS (free spaced repetition scheduler) algorithm, based on the DSR model proposed by Piotr Wozniak, author of SuperMemo",
"keywords": [
"Anki",
"SuperMemo",
"FSRS"
],
"author": "oflg",
"module": "dist/fsrs.js.esm.js",
"bugs": {
"url": "https://github.com/open-spaced-repetition/fsrs.js/issues"
},
"homepage": "https://github.com/open-spaced-repetition/fsrs.js#readme",
"publishConfig": {
"access": "public"
},
"size-limit": [
{
"path": "dist/fsrs.js.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/fsrs.js.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@types/jest": "^29.5.1",
"husky": "^8.0.3",
"size-limit": "^8.2.4",
"dts-cli": "2.0.4",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"define-properties": "npm:@nolyfill/define-properties@latest",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@latest",
"function-bind": "npm:@nolyfill/function-bind@latest",
"has-proto": "npm:@nolyfill/has-proto@latest",
"has-symbols": "npm:@nolyfill/has-symbols@latest",
"hasown": "npm:@nolyfill/hasown@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.getownpropertydescriptors": "npm:@nolyfill/object.getownpropertydescriptors@latest",
"object.groupby": "npm:@nolyfill/object.groupby@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"safe-array-concat": "npm:@nolyfill/safe-array-concat@latest",
"set-function-length": "npm:@nolyfill/set-function-length@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest"
}
}