generated from foxglove/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.35 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
{
"name": "@foxglove/crc",
"private": false,
"version": "1.0.1",
"description": "Fast CRC32 computation in TypeScript",
"license": "MIT",
"keywords": [
"crc",
"crc32",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/foxglove/crc.git"
},
"author": {
"name": "Foxglove",
"email": "contact@foxglove.dev",
"url": "https://foxglove.dev/"
},
"module": "dist/esm/src/index.js",
"main": "dist/cjs/src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist *.tsbuildinfo",
"prepack": "tsc -b tsconfig.json tsconfig.cjs.json",
"build": "tsc -b tsconfig.json tsconfig.cjs.json",
"lint": "eslint --fix .",
"lint:ci": "eslint .",
"bench": "ts-node --project tsconfig.cjs.json bench/index.ts",
"test": "jest"
},
"devDependencies": {
"@foxglove/eslint-plugin": "2.0.0",
"@foxglove/tsconfig": "2.0.0",
"@types/crc": "3.8.3",
"@types/jest": "29.5.14",
"@types/node": "22.10.3",
"benny": "3.7.1",
"crc": "4.3.2",
"crc-32": "1.2.2",
"eslint": "9.17.0",
"globals": "15.14.0",
"jest": "29.7.0",
"node-crc": "3.0.2",
"polycrc": "1.1.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"typescript-eslint": "8.19.1"
}
}