-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 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
{
"name": "@rotu/structview",
"version": "0.17.0-pre",
"description": "Read and write structured binary data with typesafe views",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rotu/structview.git"
},
"files": [
"dist",
"src",
"README.md",
"CHANGELOG.md"
],
"type": "module",
"imports": {
"#package-json": "./package.json",
"#src/*": "./src/*"
},
"exports": {
".": {
"node": "./dist/mod.js",
"default": "./src/mod.ts"
},
"./bigendian": {
"node": "./dist/bigendian.js",
"default": "./src/bigendian.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"prepack": "vp run build",
"test": "vitest run",
"test:bun": "bun run ./node_modules/vitest/vitest.mjs run",
"test:deno": "deno run -A ./node_modules/vitest/vitest.mjs run",
"test:node": "node ./node_modules/vitest/vitest.mjs run",
"test:workers": "node ./node_modules/vitest/vitest.mjs run --config ./vitest.workers.config.ts"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.14.3",
"@types/node": "*",
"jsr": "*",
"vite-plus": "*",
"vitest": "^4.1.4"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest"
},
"engines": {
"bun": ">=1",
"deno": ">=2",
"node": ">=22.18.0",
"workerd": ">=1.20260409.1"
},
"packageManager": "[email protected]"
}