-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
85 lines (85 loc) · 2.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "nodecg-cli",
"version": "9.0.2",
"description": "The NodeCG command line interface.",
"bugs": {
"url": "http://github.com/nodecg/nodecg-cli/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/nodecg/nodecg-cli.git"
},
"license": "MIT",
"type": "module",
"bin": {
"nodecg": "dist/bin/nodecg.js"
},
"files": [
"AUTHORS",
"LICENSE",
"README.md",
"dist"
],
"contributors": [
{
"name": "Alex Van Camp",
"email": "[email protected]",
"url": "https://alexvan.camp/"
},
{
"name": "Matthew McNamara",
"email": "[email protected]",
"url": "http://mattmcn.com/"
},
{
"name": "Keiichiro Amemiya",
"email": "[email protected]"
}
],
"scripts": {
"build": "del-cli dist && tsc --build tsconfig.build.json",
"dev": "tsc --build tsconfig.build.json --watch",
"format": "prettier --write \"**/*.ts\"",
"static": "run-s static:*",
"static:prettier": "prettier --check \"**/*.ts\"",
"static:eslint": "eslint --cache",
"fix": "run-s fix:*",
"fix:prettier": "prettier --write \"**/*.ts\"",
"fix:eslint": "eslint --fix",
"test": "vitest"
},
"prettier": {},
"dependencies": {
"@inquirer/prompts": "^7.2.1",
"ajv": "^8.17.1",
"chalk": "^5.4.1",
"commander": "^12.1.0",
"hosted-git-info": "^8.0.2",
"json-schema-to-typescript": "^15.0.3",
"npm-package-arg": "^12.0.1",
"semver": "^7.6.3",
"tar": "^7.4.3",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/hosted-git-info": "^3.0.5",
"@types/node": "18",
"@types/npm-package-arg": "^6.1.4",
"@types/semver": "^7.5.8",
"@types/update-notifier": "^6.0.8",
"del-cli": "^6.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"type-fest": "^4.31.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
},
"engines": {
"node": "^18.17.0 || ^20.9.0 || ^22.11.0"
}
}