-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "@algorithm.ts/sudoku",
"version": "4.0.3",
"description": "A efficient Sudoku solver and creator.",
"author": {
"name": "guanghechen",
"url": "https://github.com/guanghechen/"
},
"repository": {
"type": "git",
"url": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/[email protected]",
"directory": "packages/sudoku"
},
"homepage": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/[email protected]/packages/sudoku#readme",
"keywords": [
"sudoku",
"sudoku creator",
"sudoku solver"
],
"type": "module",
"exports": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.mjs",
"require": "./lib/cjs/index.cjs"
},
"source": "./src/index.ts",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.cjs",
"module": "./lib/esm/index.mjs",
"license": "MIT",
"files": [
"lib/",
"!lib/**/*.map",
"package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"dependencies": {
"@algorithm.ts/dlx": "^4.0.3",
"@algorithm.ts/shuffle": "^4.0.3"
}
}