-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 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
58
59
60
61
{
"name": "@sndwrks/osc-cli",
"version": "1.3.0",
"description": "Simple OSC command-line tool",
"keywords": [
"osc",
"cli",
"tcp",
"udp",
"open-sound-control"
],
"homepage": "https://github.com/sndwrks/osc-cli#readme",
"bugs": {
"url": "https://github.com/sndwrks/osc-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sndwrks/osc-cli.git"
},
"license": "MIT",
"author": "john mckenna",
"type": "module",
"main": "dist/index.js",
"bin": {
"osc-cli": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "tsc && node dist/cli.js",
"prepublishOnly": "npm run build",
"prepack": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint 'src/**/*.ts' --ignore-pattern 'src/types/'"
},
"dependencies": {
"@sndwrks/lumberjack": "^0.8.0",
"commander": "^14.0.2",
"osc": "^2.4.5"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^4.4.3",
"typescript": "^5.0.0",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=20.0.0"
}
}