-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 862 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 862 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
41
{
"name": "bun-ffi-structs",
"version": "0.1.4",
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/sst/bun-ffi-structs.git"
},
"scripts": {
"test": "bun test",
"bench": "bun run bench/structs.bench.ts",
"prettier:check": "bun prettier --check .",
"prettier:write": "bun prettier --write .",
"build": "./scripts/build.sh"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "3.6.2",
"tinybench": "^5.0.1"
},
"peerDependencies": {
"typescript": "^5"
},
"prettier": {
"semi": false,
"printWidth": 120
}
}