-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 KB
/
package.json
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
{
"name": "@solancer/two-way-map",
"version": "1.0.4",
"description": "A TypeScript library providing two-way mapping functionality with order preservation. It is ideal for scenarios requiring bidirectional lookups while maintaining the insertion order of elements.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solancer/two-way-map.git"
},
"keywords": [
"map",
"two-way map",
"two-way",
"data structure",
"bidirectional",
"bidirectional lookup",
"ordering",
"key value",
"lookup"
],
"author": "Srinivas Gowda <srinivas@solancer.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solancer/two-way-map/issues"
},
"homepage": "https://github.com/solancer/two-way-map#readme",
"devDependencies": {
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": ">=3.0.0"
}
}