-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.13 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.13 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
{
"name": "ssomatic",
"version": "1.2.3",
"description": "SSOmatic — Auto-discover, refresh, and manage your AWS SSO credentials from the terminal or browser. Built with Bun, React, and TypeScript.",
"private": true,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tux86/ssomatic.git"
},
"author": "tux86",
"homepage": "https://github.com/tux86/ssomatic",
"scripts": {
"prestart": "test -f src/web/assets.generated.ts || echo 'export const ASSETS = new Map();' > src/web/assets.generated.ts",
"start": "bun run src/cli/index.tsx",
"dev": "bun run prestart && bun run --watch src/cli/index.tsx",
"build": "vite build && bun run scripts/embed-assets.ts && rm -rf dist/web && bun build --compile src/cli/index.tsx --outfile dist/ssomatic",
"lint": "eslint src",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-sso": "^3.958.0",
"@aws-sdk/client-sso-oidc": "^3.958.0",
"@aws-sdk/client-sts": "^3.700.0",
"ini": "^5.0.0",
"ink": "^6.0.0",
"ink-spinner": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "^9.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/ini": "^4.1.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"bun-types": "latest",
"conventional-changelog-conventionalcommits": "^9.3.0",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.1.7",
"postcss": "^8.5.0",
"semantic-release": "^25.0.3",
"tailwindcss": "^3.4.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
}
}