-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.68 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
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
{
"name": "bytestreamjs",
"version": "2.0.1",
"description": "ByteStream is a library making possible to manipulates single bytes and bits on pure JavaScript",
"keywords": [
"ES2015",
"ES6",
"access",
"bit",
"byte",
"stream"
],
"license": "BSD-3-Clause",
"author": {
"name": "Yury Strozhevsky",
"email": "yury@strozhevsky.com"
},
"contributors": [
{
"email": "rmh@unmitigatedrisk.com",
"name": "Ryan Hurst"
}
],
"repository": {
"type": "git",
"url": "https://github.com/PeculiarVentures/ByteStream.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"main": "./build/cjs/index.js",
"module": "./build/mjs/index.js",
"types": "./build/types/index.d.ts",
"scripts": {
"test": "vitest run",
"clear": "rimraf build",
"build": "npm run build:cjs && npm run build:mjs && npm run build:types",
"build:cjs": "tsc -p tsconfig.json --module commonjs --removeComments --outDir build/cjs",
"build:mjs": "tsc -p tsconfig.json --module es2015 --removeComments --outDir build/mjs",
"prebuild:types": "rimraf build/types",
"build:types": "tsc -p tsconfig.json --outDir build/types --declaration --emitDeclarationOnly",
"rebuild": "npm run clear && npm run build",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt",
"format:check": "oxfmt --check",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/node": "^22.20.1",
"@vitest/coverage-v8": "^4.1.10",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=6.0.0"
}
}