-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.04 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
{
"name": "@9elt/hash",
"version": "3.0.0",
"description": "A fast, performance focused, 32-bit non cryptographic hash",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"dev": "tsc -p tsconfig.esm.json --watch",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json && echo '{\"type\": \"module\"}'> ./dist/esm/package.json",
"build": "npm run build:cjs && npm run build:esm && npm run test",
"pub": "npm run build && mv README README.md && npm publish; mv README.md README",
"test": "bun test"
},
"author": "Lorenzo Cicuttin",
"license": "MIT",
"keywords": [
"hash",
"fast",
"object-hash",
"djb2"
],
"readme": "./README.md",
"homepage": "https://github.com/9elt/hash#readme",
"devDependencies": {
"@types/bun": "^1.3.8"
}
}