forked from garycourt/murmurhash-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
47
{
"name": "@cicara/murmurhash",
"type": "module",
"version": "1.0.0",
"description": "an optimized javascript implementation of the murmurhash algorithms",
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "vite build",
"prepare": "pnpm run build"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.umd.js"
}
},
"files": [
"dist"
],
"devDependencies": {
"typescript": "^5.5.3",
"vite": "^5.4.1",
"vite-plugin-dts": "^4.2.2",
"vitest": "^2.1.1"
},
"packageManager": "[email protected]+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf",
"directories": {
"lib": "lib"
},
"keywords": [
"hash",
"murmurhash"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cicara/murmurhash.git"
},
"author": "hungtcs <[email protected]> (https://github.com/hungtcs)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cicara/murmurhash/issues"
},
"homepage": "https://github.com/cicara/murmurhash#readme"
}