-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.76 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.76 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
{
"name": "protoc-gen-brs",
"version": "1.0.4",
"description": "BrightScript code generator and test harness for protobuf definitions.",
"main": "dist/cli.js",
"bin": {
"protoc-gen-brs": "dist/cli.js"
},
"scripts": {
"clean": "rimraf dist out generated/source fixtures/baseline",
"build": "rimraf dist && tsc --project tsconfig.json && node scripts/copyTemplates.mjs",
"build:roku": "bsc --project bsconfig.json && node scripts/postBuildRoku.mjs",
"package:roku": "node scripts/packageChannel.mjs",
"generate:brs": "ts-node --project tsconfig.json src/cli.ts generate",
"generate:baseline": "ts-node --project tsconfig.json src/cli.ts baseline",
"dev": "ts-node --project tsconfig.json src/cli.ts --help",
"lint": "echo \"TODO: add linting\"",
"test": "ts-node --project tsconfig.json tests/uintTypes.test.ts && ts-node --project tsconfig.json tests/videoPlaybackAbr.test.ts && (npm run test:parity || echo \"Scalar parity test failed (non-blocking)\")",
"test:parity": "ts-node --project tsconfig.json tests/scalarParity.test.ts",
"roku:test": "node scripts/runOnDevice.mjs",
"prepare": "npm run build"
},
"keywords": [
"roku",
"brightscript",
"protobuf"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"files": [
"dist",
"bsconfig.json",
"proto",
"generated",
"fixtures",
"roku-app"
],
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.7.0",
"@types/yargs": "^17.0.33",
"brs": "^0.45.0",
"brighterscript": "^0.70.1",
"roku-deploy": "^3.8.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"fs-extra": "^11.3.2",
"protobufjs": "^7.5.4",
"yargs": "^17.7.2"
}
}