-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.06 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.06 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@beeping/node",
"version": "0.0.0",
"description": "🟢 Official Node.js SDK for data over sound (audible + ultrasonic) — dual-mode local/cloud. Part of the Beeping Platform.",
"keywords": [
"beeping",
"data-over-sound",
"ultrasonic",
"audio",
"sdk",
"napi"
],
"homepage": "https://github.com/beeping-io/beeping-node#readme",
"bugs": {
"url": "https://github.com/beeping-io/beeping-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beeping-io/beeping-node.git"
},
"license": "Apache-2.0",
"author": "Alfred Rivas <alfred@beeping.io>",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"prebuilds",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepare": "tsup || true"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.6",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-n": "^17.15.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vitest": "^2.1.8"
}
}