-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.74 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "highwayhash-wasm",
"version": "1.2.6",
"description": "HighwayHash WASM bindings for browser and node environments",
"author": "Andreas Sonnleitner <asonnleitner@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com:asonnleitner/highwayhash-wasm.git"
},
"main": "dist/highwayhash-wasm.cjs.js",
"module": "dist/highwayhash-wasm.esm.js",
"unpkg": "dist/highwayhash-wasm.global.js",
"jsdelivr": "dist/highwayhash-wasm.global.js",
"types": "dist/highwayhash-wasm.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "ts-node scripts/dev.ts",
"dev:vite": "vite",
"lint": "pnpm lint:js && pnpm lint:prettier",
"lint:js": "eslint --ext .ts js/**/*.ts",
"lint:prettier": "prettier --write --parser typescript \"js/**/*.ts\"",
"build": "pnpm clean && pnpm optimized-build:wasm && pnpm build:js && pnpm make-types",
"make-types": "api-extractor run --local --verbose",
"build:js": "pnpm build:esm && pnpm build:cjs && pnpm build:global",
"build:esm": "ts-node scripts/build.ts highwayhash-wasm -f esm",
"build:cjs": "ts-node scripts/build.ts highwayhash-wasm -f cjs",
"build:global": "ts-node scripts/build.ts highwayhash-wasm -f global",
"optimized-build:wasm": "scripts/build && scripts/optimize",
"clean": "rm -rf dist/* && rm -rf js/highwayhash-wasm/lib/*",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "prettier --write",
"*.ts": "prettier --write --parser typescript"
},
"engines": {
"node": ">=16.14.0"
},
"pnpm": {
"version": ">=6.32.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@jest/types": "^27.5.1",
"@microsoft/api-extractor": "^7.19.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-jest": "^27.5.1",
"esbuild": "^0.14.23",
"esbuild-plugin-wasm-pack": "^1.1.0",
"eslint": "^8.9.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"magic-string": "^0.25.7",
"minimist": "^1.2.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"puppeteer": "^13.4.0",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"vite": "^2.8.4",
"wasm-opt": "^1.3.0"
},
"keywords": [
"highwayhash",
"highwayhash-wasm",
"highway",
"highway-wasm",
"hash",
"wasm",
"crypto"
]
}