-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "steelseries-sonar-sdk",
"version": "0.5.0",
"description": "An SDK for interacting with the SteelSeries Sonar software.",
"author": "Harley Torrisi <mail@harleycodes.com>",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/harley-codes/steelseries-sonar-sdk-js"
},
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"sonar",
"gg",
"steel-series",
"audio"
],
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/bun": "latest",
"bunup": "^0.16.20",
"globals": "^17.0.0",
"rimraf": "^6.1.2"
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"lint": "biome lint",
"lint-fix": "biome check --write",
"test-e2e": "bun test ./tests/e2e/**/*.test.ts",
"test-e2e-endpoint": "bun test ./tests/e2e/**/*.test.ts -t getSonarEndpoint",
"test-unit": "bun test ./tests/unit/**/*.test.ts",
"test-all": "bun test-unit && bun test-e2e",
"package": "bunup --filter node"
},
"dependencies": {
"node-fetch": "^3.3.2"
}
}