-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "@rasteli/openc",
"version": "1.1.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"description": "CLI tool to create, open and remove projects in Visual Studio Code",
"author": "Gabriel Rasteli",
"bin": {
"openc": "dist/index.js"
},
"homepage": "https://github.com/rasteli/openc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rasteli/openc.git"
},
"keywords": [
"cli",
"code"
],
"bugs": {
"url": "https://github.com/rasteli/openc/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run build && changeset publish"
},
"dependencies": {
"inquirer": "^8.0.0",
"inquirer-search-list": "^1.2.6"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.3.1",
"tsup": "^7.0.0",
"typescript": "^5.1.3"
}
}