-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.37 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "typescript-algorithm-and-data-structure",
"version": "1.0.0",
"description": "Data structures and basic algorithms implemented in TypeScript.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./algorithm": {
"types": "./dist/algorithm/index.d.ts",
"require": "./dist/algorithm/index.js",
"import": "./dist/algorithm/index.mjs"
},
"./algorithm/breadth-first-search": {
"types": "./dist/algorithm/breadth-first-search/index.d.ts",
"require": "./dist/algorithm/breadth-first-search/index.js",
"import": "./dist/algorithm/breadth-first-search/index.mjs"
},
"./algorithm/depth-first-search": {
"types": "./dist/algorithm/depth-first-search/index.d.ts",
"require": "./dist/algorithm/depth-first-search/index.js",
"import": "./dist/algorithm/depth-first-search/index.mjs"
},
"./algorithm/a-star": {
"types": "./dist/algorithm/a-star/index.d.ts",
"require": "./dist/algorithm/a-star/index.js",
"import": "./dist/algorithm/a-star/index.mjs"
},
"./algorithm/dijkstra": {
"types": "./dist/algorithm/dijkstra/index.d.ts",
"require": "./dist/algorithm/dijkstra/index.js",
"import": "./dist/algorithm/dijkstra/index.mjs"
},
"./algorithm/greedy-best-first-search": {
"types": "./dist/algorithm/greedy-best-first-search/index.d.ts",
"require": "./dist/algorithm/greedy-best-first-search/index.js",
"import": "./dist/algorithm/greedy-best-first-search/index.mjs"
},
"./algorithm/heuristic": {
"types": "./dist/algorithm/heuristic/index.d.ts",
"require": "./dist/algorithm/heuristic/index.js",
"import": "./dist/algorithm/heuristic/index.mjs"
},
"./data-structure/graph": {
"types": "./dist/data-structure/graph/index.d.ts",
"require": "./dist/data-structure/graph/index.js",
"import": "./dist/data-structure/graph/index.mjs"
},
"./data-structure/heap": {
"types": "./dist/data-structure/heap/index.d.ts",
"require": "./dist/data-structure/heap/index.js",
"import": "./dist/data-structure/heap/index.mjs"
},
"./data-structure/priority-queue": {
"types": "./dist/data-structure/priority-queue/index.d.ts",
"require": "./dist/data-structure/priority-queue/index.js",
"import": "./dist/data-structure/priority-queue/index.mjs"
},
"./data-structure/linked-list": {
"types": "./dist/data-structure/linked-list/index.d.ts",
"require": "./dist/data-structure/linked-list/index.js",
"import": "./dist/data-structure/linked-list/index.mjs"
},
"./data-structure/queue": {
"types": "./dist/data-structure/queue/index.d.ts",
"require": "./dist/data-structure/queue/index.js",
"import": "./dist/data-structure/queue/index.mjs"
},
"./data-structure/stack": {
"types": "./dist/data-structure/stack/index.d.ts",
"require": "./dist/data-structure/stack/index.js",
"import": "./dist/data-structure/stack/index.mjs"
},
"./data-structure/tree": {
"types": "./dist/data-structure/tree/index.d.ts",
"require": "./dist/data-structure/tree/index.js",
"import": "./dist/data-structure/tree/index.mjs"
},
"./utils/Comparator": {
"types": "./dist/utils/Comparator.d.ts",
"require": "./dist/utils/Comparator.js",
"import": "./dist/utils/Comparator.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "node scripts/clean-build-directories.js && tsc -p tsconfig.build.json && tsc -p tsconfig.build.esm.json && node scripts/finalize-build.js",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CokeBeliever/typescript-algorithm-and-data-structure.git"
},
"author": "CokeBeliever",
"license": "ISC",
"bugs": {
"url": "https://github.com/CokeBeliever/typescript-algorithm-and-data-structure/issues"
},
"homepage": "https://github.com/CokeBeliever/typescript-algorithm-and-data-structure#readme",
"devDependencies": {
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}