-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "code-opener-cli",
"version": "0.1.3",
"description": "command line interface code opener",
"repository": {
"type": "git",
"url": "https://github.com/skimklin/code-opener-cli"
},
"bugs": "https://github.com/skimklin/code-opener-cli/issues",
"homepage": "https://github.com/skimklin/code-opener-cli#readme",
"keywords": [
"cli"
],
"main": "src/index.ts",
"bin": {
"openc": "bin/index.js"
},
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node src/index",
"dev:b": "yarn build && node bin/index",
"test": "echo test",
"build": "rollup --c"
},
"author": "coffee",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"@rollup/plugin-json": "^6.0.1",
"@types/chalk": "^2.2.0",
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"cross-env": "^7.0.3",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"minimatch": "^9.0.3",
"ora": "^7.0.1",
"prompt": "^1.3.0",
"rimraf": "^5.0.5",
"rollup-plugin-node-resolve": "^5.2.0",
"systeminformation": "^5.21.18",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/fs-extra": "^11.0.3",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.14.202",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.10.0",
"@types/prompt": "^1.1.7",
"@types/yargs": "^17.0.32",
"rollup": "3.x",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.2"
}
}