File tree 29 files changed +89
-89
lines changed
29 files changed +89
-89
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 3.0.0-alpha.8 " ,
2
+ "version" : " 3.0.0" ,
3
3
"npmClient" : " yarn" ,
4
4
"useWorkspaces" : true ,
5
5
"command" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/base64" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " A Base64 encoding implementation." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/bellman-ford" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Bellman-ford algorithm." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
46
46
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
47
47
},
48
48
"dependencies" : {
49
- "@algorithm.ts/constant" : " ^3.0.0-alpha.8 " ,
50
- "@algorithm.ts/queue" : " ^3.0.0-alpha.8 " ,
51
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
49
+ "@algorithm.ts/constant" : " ^3.0.0" ,
50
+ "@algorithm.ts/queue" : " ^3.0.0" ,
51
+ "@algorithm.ts/types" : " ^3.0.0"
52
52
},
53
53
"devDependencies" : {
54
54
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/binary-index-tree" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Binary Index Tree" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
45
45
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
46
46
},
47
47
"dependencies" : {
48
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
48
+ "@algorithm.ts/types" : " ^3.0.0"
49
49
},
50
50
"devDependencies" : {
51
51
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/binary-search" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Find the index of first elements which greater or equals than the target element." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
44
44
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
45
45
},
46
46
"dependencies" : {
47
- "@algorithm.ts/constant" : " ^3.0.0-alpha.8 "
47
+ "@algorithm.ts/constant" : " ^3.0.0"
48
48
},
49
49
"devDependencies" : {
50
50
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/bipartite-matching" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " The algorithm to find the maximum matching of the bipartite graph." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
44
44
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
45
45
},
46
46
"dependencies" : {
47
- "@algorithm.ts/queue" : " ^3.0.0-alpha.8 "
47
+ "@algorithm.ts/queue" : " ^3.0.0"
48
48
},
49
49
"devDependencies" : {
50
50
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/calculator" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " A tiny calculator for number arithmetics such as '+-*/()'" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
47
47
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
48
48
},
49
49
"dependencies" : {
50
- "@algorithm.ts/constant" : " ^3.0.0-alpha.8 " ,
51
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
50
+ "@algorithm.ts/constant" : " ^3.0.0" ,
51
+ "@algorithm.ts/types" : " ^3.0.0"
52
52
},
53
53
"devDependencies" : {
54
54
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/constant" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Common constant for the algorithm.ts packages." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/dijkstra" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Dijkstra algorithm optimized with priority queue." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
47
47
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
48
48
},
49
49
"dependencies" : {
50
- "@algorithm.ts/constant" : " ^3.0.0-alpha.8 " ,
51
- "@algorithm.ts/queue" : " ^3.0.0-alpha.8 " ,
52
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
50
+ "@algorithm.ts/constant" : " ^3.0.0" ,
51
+ "@algorithm.ts/queue" : " ^3.0.0" ,
52
+ "@algorithm.ts/types" : " ^3.0.0"
53
53
},
54
54
"devDependencies" : {
55
55
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/dinic" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " The dinic algorithm implemented in typescript" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
47
47
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
48
48
},
49
49
"dependencies" : {
50
- "@algorithm.ts/queue" : " ^3.0.0-alpha.8 " ,
51
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
50
+ "@algorithm.ts/queue" : " ^3.0.0" ,
51
+ "@algorithm.ts/types" : " ^3.0.0"
52
52
},
53
53
"devDependencies" : {
54
54
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/dlx" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Dancing link + Algorithm X" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/findset" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Find set written in Typescript." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/gcd" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " GCD + Euclidean algorithm" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
45
45
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
46
46
},
47
47
"dependencies" : {
48
- "@algorithm.ts/constant" : " ^3.0.0-alpha.8 "
48
+ "@algorithm.ts/constant" : " ^3.0.0"
49
49
},
50
50
"devDependencies" : {
51
51
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/gomoku" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " A algorithm based on minimax search and alpha-beta prune to solve gomoku game." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
46
46
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
47
47
},
48
48
"dependencies" : {
49
- "@algorithm.ts/queue" : " ^3.0.0-alpha.8 "
49
+ "@algorithm.ts/queue" : " ^3.0.0"
50
50
},
51
51
"devDependencies" : {
52
52
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/graph" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Types and utils from solving graph problems." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
44
44
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
45
45
},
46
46
"dependencies" : {
47
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
47
+ "@algorithm.ts/types" : " ^3.0.0"
48
48
},
49
49
"devDependencies" : {
50
50
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/huffman" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " huffman + Euclidean algorithm" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
45
45
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
46
46
},
47
47
"dependencies" : {
48
- "@algorithm.ts/queue" : " ^3.0.0-alpha.8 "
48
+ "@algorithm.ts/queue" : " ^3.0.0"
49
49
},
50
50
"devDependencies" : {
51
51
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/isap" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " The ISAP algorithm implemented in typescript" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
47
47
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
48
48
},
49
49
"dependencies" : {
50
- "@algorithm.ts/queue" : " ^3.0.0-alpha.8 " ,
51
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
50
+ "@algorithm.ts/queue" : " ^3.0.0" ,
51
+ "@algorithm.ts/types" : " ^3.0.0"
52
52
},
53
53
"devDependencies" : {
54
54
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/lcs" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Find the longest common subsequence." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
45
45
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
46
46
},
47
47
"dependencies" : {
48
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
48
+ "@algorithm.ts/types" : " ^3.0.0"
49
49
},
50
50
"devDependencies" : {
51
51
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/manacher" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " The manacher algorithm for solving palindrome string problems" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/mcmf" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " The MCMF algorithm implemented in typescript" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
47
47
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
48
48
},
49
49
"dependencies" : {
50
- "@algorithm.ts/queue" : " ^3.0.0-alpha.8 " ,
51
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
50
+ "@algorithm.ts/queue" : " ^3.0.0" ,
51
+ "@algorithm.ts/types" : " ^3.0.0"
52
52
},
53
53
"devDependencies" : {
54
54
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/prime" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " A typescript implementation of the Linear-Sieve algorithm for prime numbers." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/queue" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Typescript implementation of queues, such as priority queue and circular queue." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
47
47
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
48
48
},
49
49
"dependencies" : {
50
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
50
+ "@algorithm.ts/types" : " ^3.0.0"
51
51
},
52
52
"devDependencies" : {
53
53
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/roman" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Conversion between Roman numerals and Arabic numerals" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/shuffle" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Knuth shuffle" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/sliding-window" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Sliding window" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
44
44
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
45
45
},
46
46
"dependencies" : {
47
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
47
+ "@algorithm.ts/types" : " ^3.0.0"
48
48
},
49
49
"devDependencies" : {
50
50
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/sudoku" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " A efficient Sudoku solver and creator." ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
45
45
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
46
46
},
47
47
"dependencies" : {
48
- "@algorithm.ts/dlx" : " ^3.0.0-alpha.8 " ,
49
- "@algorithm.ts/shuffle" : " ^3.0.0-alpha.8 "
48
+ "@algorithm.ts/dlx" : " ^3.0.0" ,
49
+ "@algorithm.ts/shuffle" : " ^3.0.0"
50
50
},
51
51
"devDependencies" : {
52
52
"cross-env" : " ^7.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @algorithm.ts/trie" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " Trie" ,
5
5
"author" : {
6
6
"name" : " guanghechen" ,
47
47
"test" : " cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
48
48
},
49
49
"dependencies" : {
50
- "@algorithm.ts/constant" : " ^3.0.0-alpha.8 " ,
51
- "@algorithm.ts/types" : " ^3.0.0-alpha.8 "
50
+ "@algorithm.ts/constant" : " ^3.0.0" ,
51
+ "@algorithm.ts/types" : " ^3.0.0"
52
52
},
53
53
"devDependencies" : {
54
54
"cross-env" : " ^7.0.3" ,
You can’t perform that action at this time.
0 commit comments