-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.45 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
{
"name": "@kirklin/supermemo2",
"type": "module",
"version": "0.0.3",
"packageManager": "pnpm@7.9.0",
"description": "A TypeScript implementation of the SuperMemo 2 (SM2) algorithm for spaced based repetition algorithm",
"author": "Kirk Lin <linkirk@163.com> (https://github.com/kirklin)",
"license": "MIT",
"keywords": [
"sm2",
"supermemo",
"flashcards",
"supermemo-2",
"spaced-repetition",
"javascript",
"typescript"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@kirklin/eslint-config": "^0.2.7",
"@types/node": "^18.15.0",
"bumpp": "^9.0.0",
"eslint": "^8.36.0",
"esno": "^0.16.3",
"pnpm": "^7.29.1",
"rimraf": "^4.4.0",
"typescript": "^4.9.5",
"unbuild": "^1.1.2",
"vite": "^4.1.4",
"vitest": "^0.29.2"
}
}