-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 KB
/
package.json
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": "create-roku-app",
"version": "1.0.0",
"license": "MIT",
"description": "Quickly scaffold a modern Roku app, including the best practices to enhance your development experience.",
"keywords": [
"roku",
"scaffold",
"generator"
],
"bugs": {
"url": "https://github.com/haystacknews/create-roku-app/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/haystacknews/create-roku-app.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"create-roku-app": "dist/index.js"
},
"scripts": {
"prebuild": "rm -rf dist/",
"build": "tsc",
"postbuild": "cp -r src/static dist/static/",
"manual-test": "rm -rf test-project; ts-node src/index.ts --name \"Test Project\" --pm pnpm",
"release": "release-it"
},
"devDependencies": {
"@types/node": "^18.16.17",
"@types/prompts": "^2.4.4",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.42.0",
"eslint-plugin-github": "^4.8.0",
"release-it": "^15.11.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"prompts": "2.4.2",
"yargs": "17.6.0"
},
"pnpm": {
"overrides": {
"json5@<1.0.2": ">=1.0.2"
}
}
}