-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 834 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 834 Bytes
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
{
"name": "crc64-ecma",
"version": "3.0.1",
"description": "Calculate CRC64/XZ hashes for NodeJS.",
"license": "MIT",
"author": "AkiVer",
"homepage": "https://github.com/akiver/crc64-ecma",
"repository": {
"type": "git",
"url": "git+https://github.com/akiver/crc64-ecma.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"crc",
"crc64",
"crc64/xz"
],
"scripts": {
"build": "tsc",
"compile": "tsc --noEmit",
"dev": "tsc --watch",
"format": "prettier --write \"**\"",
"t": "npm run test",
"test": "vitest run",
"tw": "vitest --watch"
},
"devDependencies": {
"prettier": "3.6.2",
"typescript": "5.9.2",
"vitest": "3.2.4"
},
"engines": {
"node": ">=10.8.0"
}
}