Comparing version 1.0.1 to 1.0.2
@@ -1,2 +0,6 @@ | ||
export * from './data-structures/stack.js'; | ||
export * from './data-structures/queue.js'; | ||
export { Stack } from './data-structures/stack.js'; | ||
export { Queue } from './data-structures/queue.js'; | ||
export { LinkedList } from './data-structures/linkedList.js'; | ||
export { DoubleLinkedList } from './data-structures/doubleLinkedList.js'; | ||
export { Deque } from './data-structures/deque.js'; | ||
export { PriorityQueue } from './data-structures/priorityQueue.js'; |
{ | ||
"name": "ds-js-stl", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "ds-kit is an NPM package provide ready to use famous data structures to JavaScript. It draws inspiration from the structured beauty of C++ STL.", | ||
@@ -15,2 +15,4 @@ "main": "index.js", | ||
"keywords": [ | ||
"ds", | ||
" data structure javascript", | ||
"data-structures", | ||
@@ -33,7 +35,2 @@ "algorithms", | ||
"heap", | ||
"sorting-algorithms", | ||
"searching-algorithms", | ||
"graph-algorithms", | ||
"dynamic-programming", | ||
"trie", | ||
"priority-queue", | ||
@@ -40,0 +37,0 @@ "JavaScript", |
@@ -21,3 +21,3 @@ ## Install | ||
import { Stack, Queue, PriorityQueue, DoubleLinkedList, LinkedList, Deque } from 'ds-kit'; | ||
import { Stack, Queue, PriorityQueue, DoubleLinkedList, LinkedList, Deque } from 'ds-js-stl/index.js'; | ||
@@ -24,0 +24,0 @@ const stack = new Stack(); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
626
23533
9
1