-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.43 KB
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
{
"name": "congruence-solver",
"description": "Single variable linear and quadratic congruence solver",
"sideEffects": false,
"version": "0.1.8",
"type": "module",
"author": {
"name": "Péter Pallos"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pallosp/congruence_solver.git"
},
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"math",
"congruence",
"linear congruence",
"quadratic congruence",
"modular arithmetic",
"number theory",
"Tonelli-Shanks",
"Hensel lifting",
"Chinese remainder theorem"
],
"scripts": {
"benchmark": "tsx benchmark/benchmark",
"build": "tsup --format=esm --clean --dts && tsup --format=cjs",
"coverage": "jest --coverage",
"lint": "eslint",
"prepublishOnly": ".husky/pre-commit && npm run build",
"prepare": "husky",
"test": "jest",
"typecheck": "tsc"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@types/minimalistic-assert": "^1.0.3",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"tinybench": "^3.1.1",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
},
"dependencies": {
"minimalistic-assert": "^1.0.1"
}
}