-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.3 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.3 KB
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
71
72
73
{
"name": "git-stack-cli",
"version": "2.11.0",
"description": "",
"author": "magus",
"license": "MIT",
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"repository": {
"type": "git",
"url": "git+https://github.com/magus/git-stack-cli.git"
},
"type": "module",
"bin": {
"git-stack": "dist/js/index.js"
},
"files": [
"dist/js",
"package.json",
"pnpm-lock.yaml",
"scripts",
"src",
"tsconfig.json"
],
"scripts": {
"dev": "pnpm run build --dev --watch",
"build": "bun run scripts/bun-build.ts",
"compile": "bun run scripts/bun-compile.ts",
"release:npm": "bun run scripts/release-npm.ts",
"release:github": "bun run scripts/release-github.ts",
"release:brew": "bun run scripts/release-brew.ts",
"release": "pnpm run release:npm && pnpm run release:github && pnpm run release:brew",
"lint:check": "eslint . --cache",
"lint": "pnpm run lint:check --fix",
"prettier:check": "prettier src scripts config .eslintrc.cjs --check --cache",
"prettier": "pnpm run prettier:check --write",
"test": "bun test",
"test:watch": "pnpm run test --watch",
"test:types": "tsc",
"test:all": "pnpm run prettier:check && pnpm run lint:check && pnpm run test:types && pnpm run test",
"prepublishOnly": "bun run scripts/npm-prepublishOnly.ts"
},
"dependencies": {
"chalk": "^5.3.0",
"immer": "^10.0.3",
"ink-cjs": "4.4.1",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"react": "^18.2.0",
"react-devtools-core": "^4.19.1",
"react-intl": "^6.5.5",
"yargs": "^17.7.2",
"zustand": "^4.4.4"
},
"devDependencies": {
"@oven/bun-darwin-aarch64": "1.1.42",
"@types/chalk": "^2.2.0",
"@types/lodash": "^4.17.7",
"@types/luxon": "^3.4.2",
"@types/node": "^20.8.7",
"@types/react": "^18.2.33",
"@types/yargs": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"bun": "1.1.44",
"bun-types": "1.1.44",
"eslint": "^8.52.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}