-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.33 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.33 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": "@grayjay-sources/source-generator",
"version": "1.3.1",
"description": "CLI tool to generate GrayJay source plugin skeleton projects",
"main": "dist/index.js",
"bin": {
"grayjay-generate": "dist/cli.js",
"gjsg": "dist/cli.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').cpSync('src/types', 'dist/types', {recursive: true})\"",
"dev": "tsc --watch",
"prepare": "npm run build",
"test": "node dist/cli.js --help"
},
"keywords": [
"grayjay",
"plugin",
"generator",
"scaffold",
"cli",
"source",
"video"
],
"author": "Bluscream",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grayjay-sources/source-generator.git"
},
"bugs": {
"url": "https://github.com/grayjay-sources/source-generator/issues"
},
"homepage": "https://github.com/grayjay-sources/source-generator#readme",
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14",
"npm": ">=6.14.4"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"inquirer": "^9.2.12",
"ora": "^5.4.1",
"qrcode": "^1.5.3"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.5",
"@types/qrcode": "^1.5.5",
"typescript": "^5.4.5"
}
}