-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.19 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": "@miqilin21/node-player",
"version": "1.0.11",
"description": "A command line player for NodeJS",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsup --dts --minify --format cjs,esm",
"prepublishOnly": "yarn build",
"release": "bumpp --commit --push --tag"
},
"author": "zonemeen <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/zonemeen/node-player.git"
},
"bugs": {
"url": "https://github.com/zonemeen/node-player/issues"
},
"keywords": [
"cli",
"sound",
"audio",
"play",
"player",
"music",
"node",
"window",
"mac",
"sound play",
"audio play",
"music play",
"sound player",
"audio player",
"music player",
"node audio",
"audio node",
"cli player"
],
"files": [
"dist",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.11",
"bumpp": "^7.1.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tsup": "^5.11.11",
"typescript": "^4.5.5"
},
"dependencies": {
"execa": "^5.1.1"
}
}