singly-linked-list-typed 1.19.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dependency-cruiser.js +449 -0
- package/README.md +700 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +17 -0
- package/dist/singly-linked-list.d.ts +156 -0
- package/dist/singly-linked-list.js +502 -0
- package/jest.config.js +5 -0
- package/package.json +63 -0
- package/tsconfig.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "singly-linked-list-typed",
|
|
3
|
+
"version": "1.19.3",
|
|
4
|
+
"description": "Singly Linked List. Javascript & Typescript Data Structure.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "rm -rf dist && npx tsc",
|
|
8
|
+
"test": "jest",
|
|
9
|
+
"build:docs": "typedoc --out docs ./src",
|
|
10
|
+
"deps:check": "dependency-cruiser src",
|
|
11
|
+
"build:publish": "npm run build && npm run build:docs && npm publish"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/zrwusa/data-structure-typed"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"Linked list",
|
|
19
|
+
"Singly linked list",
|
|
20
|
+
"Node",
|
|
21
|
+
"Data structure",
|
|
22
|
+
"Insertion",
|
|
23
|
+
"Deletion",
|
|
24
|
+
"Traversal",
|
|
25
|
+
"Search",
|
|
26
|
+
"Data storage",
|
|
27
|
+
"Dynamic resizing",
|
|
28
|
+
"Memory efficiency",
|
|
29
|
+
"Pointer",
|
|
30
|
+
"Data management",
|
|
31
|
+
"Linked nodes",
|
|
32
|
+
"Next",
|
|
33
|
+
"Unidirectional",
|
|
34
|
+
"Linear data structure",
|
|
35
|
+
"Node connections",
|
|
36
|
+
"Head",
|
|
37
|
+
"Tail",
|
|
38
|
+
"List operations",
|
|
39
|
+
"Linked data",
|
|
40
|
+
"Sequential access",
|
|
41
|
+
"Linked list implementation"
|
|
42
|
+
],
|
|
43
|
+
"author": "Tyler Zeng zrwusa@gmail.com",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://github.com/zrwusa/data-structure-typed/issues"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://github.com/zrwusa/data-structure-typed#readme",
|
|
49
|
+
"types": "dist/index.d.ts",
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/jest": "^29.5.3",
|
|
52
|
+
"@types/node": "^20.4.9",
|
|
53
|
+
"dependency-cruiser": "^13.1.2",
|
|
54
|
+
"jest": "^29.6.2",
|
|
55
|
+
"ts-jest": "^29.1.1",
|
|
56
|
+
"typedoc": "^0.24.8",
|
|
57
|
+
"typescript": "^4.9.5"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"data-structure-typed": "^1.19.3",
|
|
61
|
+
"zod": "^3.22.2"
|
|
62
|
+
}
|
|
63
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"declaration": true,
|
|
4
|
+
"outDir": "./dist",
|
|
5
|
+
"module": "commonjs",
|
|
6
|
+
"target": "es5",
|
|
7
|
+
"lib": [
|
|
8
|
+
"esnext",
|
|
9
|
+
],
|
|
10
|
+
"strict": true,
|
|
11
|
+
"esModuleInterop": true,
|
|
12
|
+
"moduleResolution": "node",
|
|
13
|
+
"declarationDir": "./dist",
|
|
14
|
+
"skipLibCheck": true,
|
|
15
|
+
"downlevelIteration": true,
|
|
16
|
+
"experimentalDecorators": true,
|
|
17
|
+
// "allowJs": true,
|
|
18
|
+
// "allowSyntheticDefaultImports": true,
|
|
19
|
+
// "forceConsistentCasingInFileNames": true,
|
|
20
|
+
// "noFallthroughCasesInSwitch": true,
|
|
21
|
+
// "resolveJsonModule": true,
|
|
22
|
+
// "isolatedModules": true,
|
|
23
|
+
// "noEmit": true,
|
|
24
|
+
"typeRoots": [
|
|
25
|
+
"node_modules/@types"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
"include": [
|
|
30
|
+
"src",
|
|
31
|
+
],
|
|
32
|
+
"exclude": [
|
|
33
|
+
// "node_modules/data-structure-typed",
|
|
34
|
+
"node_modules",
|
|
35
|
+
"dist"
|
|
36
|
+
]
|
|
37
|
+
}
|