-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.33 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
{
"name": "@holodata/dex",
"description": "Node.js library & CLI for holodex.net",
"version": "0.1.0",
"author": "Yasuaki Uechi <[email protected]> (https://uechi.io/)",
"scripts": {
"build": "npm run tsup:cjs -- --minify --dts",
"clean": "shx rm -rf lib",
"dev": "npm run tsup:cjs -- --watch",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"tsup:cjs": "tsup src/{index,cli}.ts -d lib"
},
"types": "lib/index.d.ts",
"main": "lib/index.js",
"bin": {
"dex": "lib/cli.js"
},
"files": [
"lib"
],
"dependencies": {
"chalk": "^4.1.1",
"epicfail": "^2.0.0",
"filtrex": "^2.2.3",
"muffled": "^1.0.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.3.0",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"shx": "^0.3.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tsup": "^4.12.5",
"typescript": "^4.3.5"
},
"homepage": "https://github.com/holodata/dex",
"repository": {
"type": "git",
"url": "https://github.com/holodata/dex.git"
},
"bugs": {
"url": "https://github.com/holodata/dex/issues"
},
"license": "Apache-2.0",
"keywords": [
"cli",
"holodex",
"hololive"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 12.18.3"
}
}