-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.95 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
64
65
66
67
68
69
70
{
"name": "codew-cli",
"description": "Open folder as a vscode multi-root workspace",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"bin": {
"codew": "./dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "cross-env DEBUG=codew tsx src/index.ts",
"build": "tsup src/index.ts --format esm --clean",
"build:debug": "bun run build --env.DEBUG=codew",
"test": "vitest",
"test:coverage": "vitest --coverage.enabled --coverage.provider=v8 --coverage.all --coverage.clean --coverage.include=src",
"test:ci": "bun run test:coverage --run",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --check src",
"prettier:fix": "prettier --write src",
"typecheck": "tsc --noEmit",
"staticcheck": "conc bun:lint bun:prettier bun:typecheck",
"bump": "git checkout main && git pull && bumpp",
"compile": "bun build src/index.ts --compile --outfile bin/codew"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"cleye": "^1.3.2",
"execa": "^8.0.1",
"lowdb": "^6.1.1",
"mkdirp": "^3.0.1",
"picocolors": "^1.0.0",
"slash": "^5.1.0"
},
"devDependencies": {
"@bisquit/changelogithub-config": "^0.0.9",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^0.34.6",
"bumpp": "^9.3.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.2.4",
"tsup": "^7.2.0",
"tsx": "^3.14.0",
"typescript": "^5.3.3",
"vitest": "^0.34.6"
},
"prettier": {
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/bisquit/codew-cli.git"
},
"bugs": {
"url": "https://github.com/bisquit/codew-cli/issues"
},
"keywords": [
"vscode",
"workspace"
]
}