-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 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
{
"name": "@reactodia/hashmap",
"version": "0.2.1",
"description": "HashMap and HashSet collections with composite keys and custom hash and equality functions",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/reactodia/hashmap.git"
},
"keywords": [
"hashmap",
"hashset",
"hashcode"
],
"author": {
"name": "Alexey Morozov",
"url": "https://github.com/AlexeyMz"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/reactodia/hashmap/issues"
},
"homepage": "https://github.com/reactodia/hashmap#readme",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "vitest",
"typecheck": "tsc",
"clean": "rimraf dist"
},
"devDependencies": {
"rimraf": "^6.1.0",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"type": "module",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"CHANGELOG.md",
"LICENSE.md",
"package.json",
"README.md",
"tsconfig.json",
"tsconfig.build.json"
]
}