-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.62 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
{
"name": "node-osc",
"description": "pyOSC inspired library for sending and receiving OSC messages",
"version": "11.3.0",
"exports": {
"types": "./types/index.d.mts",
"require": "./dist/lib/index.js",
"import": "./lib/index.mjs",
"default": "./lib/index.mjs"
},
"imports": {
"#decode": {
"require": "./dist/lib/internal/decode.js",
"default": "./lib/internal/decode.mjs"
}
},
"author": {
"name": "Myles Borins",
"email": "[email protected]"
},
"engines": {
"node": "^20.9.0 || ^22.11.0 || >=24.0.0"
},
"license": "Apache-2.0",
"scripts": {
"clean": "rm -rf dist/ types/",
"build": "npm run clean && rollup --config rollup.config.mjs && npm run build:types",
"build:types": "tsc",
"docs": "node scripts/generate-docs.mjs",
"prepublishOnly": "npm run build",
"lint": "eslint \"lib/**/*.mjs\" \"test/test-*.mjs\" \"examples/*.js\" \"examples/*.mjs\" \"scripts/*.mjs\" rollup.config.mjs",
"test": "npm run lint && npm run build && npm run test:esm && npm run test:cjs",
"test:esm": "tap test/test-*.mjs",
"test:cjs": "tap dist/test/test-*.js"
},
"contributors": [
"Hans Hübner <[email protected]>",
"Andy Smith <[email protected]>",
"Myles Borins <[email protected]>"
],
"keywords": [
"osc",
"udp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MylesBorins/node-osc.git"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"jsdoc": "^4.0.5",
"rollup": "^4.46.2",
"tap": "^21.1.0",
"typescript": "^5.9.3"
}
}