-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.46 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
{
"name": "chess-srs",
"version": "3.0.0",
"type": "module",
"description": "Library to train chess openings with spaced repetition",
"main": "dist/chessSrs.js",
"exports": {
".": "./dist/chessSrs.js",
"./*": "./dist/*.js"
},
"scripts": {
"compile": "tsc --sourceMap --declaration",
"bundle": "esbuild src/chessSrs.ts --bundle --format=esm --outfile=dist/chessSrs.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"files": [
"/src/*.ts",
"/dist/*.js",
"/dist/*.d.ts",
"/dist/*.js.map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jacokyle01/chess-srs.git"
},
"keywords": [
"chess",
"spaced-repetition",
"chess-openings",
"typescript"
],
"author": "jacokyle",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/jacokyle01/chess-srs/issues"
},
"homepage": "https://github.com/jacokyle01/chess-srs#readme",
"dependencies": {
"chessops": "^0.13.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.10.5",
"esbuild": "^0.19.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"jest": {
"testRegex": ".*\\.test\\.ts$",
"transform": {
"\\.ts$": [
"ts-jest",
{
"useESM": true
}
]
},
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(.*)\\.js$": "$1"
}
}
}