-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.36 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "megamap",
"version": "1.3.4",
"description": "Extended JavaScript Map with caching, loading, expiry features... and more",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --verbose",
"build": "tsc",
"watch": "tsc -w",
"prepublish": "npm run build",
"playground:serve": "cd playground && pnpm run serve",
"playground:build": "cd playground && pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/l422y/megamap.git"
},
"keywords": [
"map",
"cache",
"loadable",
"expirable",
"javascript",
"typescript",
"vue",
"vue3",
"reactive",
"reactivity",
"database",
"hashmap"
],
"files": [
"dist"
],
"contributors": [
{
"name": "Larry Williamson",
"email": "[email protected]",
"url": "https://l422y.com",
"username": "l422y"
}
],
"author": "Larry Williamson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/l422y/megamap/issues"
},
"homepage": "https://github.com/l422y/megamap#readme",
"devDependencies": {
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"fuse.js": "^7.0.0"
},
"optionalDependencies": {
"vue": "^3.0.0"
}
}