-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.09 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
62
63
64
65
66
67
{
"name": "@gamesdonequick/spawn-media-player",
"version": "0.0.0-development",
"description": "A tiny CLI tool that spawns a media player, letting the user pick a few options in the process.",
"main": "dist/index.js",
"bin": {
"spawnmp": "dist/index.js"
},
"scripts": {
"static": "npm-run-all -s static:*",
"static:lint": "eslint --parser-options=project:tsconfig.json \"src/**/*.ts\"",
"static:format": "prettier --list-different \"**/*.{ts,js,html,css,json,yml}\"",
"build": "trash dist && tsc -p \"./tsconfig.json\"",
"format": "pretty-quick",
"watch": "tsc -p tsconfig.json --watch",
"start": "ts-node ./src/index.ts"
},
"author": "Games Done Quick, LLC <engineering@gamesdonequick.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GamesDoneQuick/spawn-media-player.git"
},
"bugs": {
"url": "https://github.com/GamesDoneQuick/spawn-media-player/issues"
},
"homepage": "https://github.com/GamesDoneQuick/spawn-media-player#readme",
"dependencies": {
"app-root-path": "^3.0.0",
"prompts": "^2.3.0",
"rage-edit": "^1.2.0",
"windows-audio-devices": "github:GamesDoneQuick/windows-audio-devices#4f95533bc610f0daeba663d1076fe8a16a4f38c6",
"yargs": "^15.1.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@gamesdonequick/eslint-config": "^2.1.0",
"@gamesdonequick/prettier-config": "^2.2.0",
"@supportclass/tsconfig-base": "^1.0.2",
"@types/app-root-path": "^1.2.4",
"@types/node": "^13.7.0",
"@types/prompts": "^2.0.3",
"@types/yargs": "^15.0.3",
"eslint": "^6.8.0",
"husky": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"semantic-release": "^17.0.2",
"trash-cli": "^3.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
]
}