|
1 | 1 | { |
2 | 2 | "name": "awsx", |
3 | 3 | "description": "AWS CLI profile switcher with MFA support", |
4 | | - "version": "1.2.0", |
| 4 | + "version": "1.3.0", |
5 | 5 | "author": "Neo Financial Engineering <engineering@neofinancial.com>", |
6 | 6 | "license": "MIT", |
7 | 7 | "repository": { |
|
16 | 16 | "_awsx": "./bin/run.sh" |
17 | 17 | }, |
18 | 18 | "scripts": { |
19 | | - "start": "NODE_ENV=development ts-node src/app.ts", |
| 19 | + "start": "ts-node-script src/app.ts", |
20 | 20 | "start:build": "node bin/awsx.js", |
21 | | - "build": "NODE_ENV=production ncc build src/app.ts -o build --minify --external update-notifier", |
22 | | - "watch": "NODE_ENV=production ncc build src/app.ts -o build --watch --external update-notifier", |
| 21 | + "build": "NODE_ENV=production rollup -c", |
| 22 | + "watch": "rollup -c -w", |
23 | 23 | "test": "NODE_ENV=test jest", |
24 | 24 | "clean": "rimraf build", |
25 | 25 | "lint": "eslint \"**/*.{ts,js}\"", |
|
44 | 44 | "update-notifier": "^4.1.3" |
45 | 45 | }, |
46 | 46 | "devDependencies": { |
| 47 | + "@aws-sdk/client-iam": "^3.43.0", |
| 48 | + "@aws-sdk/client-sts": "^3.43.0", |
| 49 | + "@aws-sdk/credential-providers": "^3.43.0", |
| 50 | + "@rollup/plugin-commonjs": "^21.0.1", |
| 51 | + "@rollup/plugin-json": "^4.1.0", |
| 52 | + "@rollup/plugin-node-resolve": "^13.0.6", |
| 53 | + "@rollup/plugin-typescript": "^8.3.0", |
47 | 54 | "@types/ini": "^1.3.31", |
48 | | - "@types/inquirer": "^6.5.0", |
49 | 55 | "@types/jest": "^27.0.2", |
50 | 56 | "@types/node": "^13.13.52", |
| 57 | + "@types/prompts": "^2.0.14", |
51 | 58 | "@types/update-notifier": "^2.5.2", |
52 | 59 | "@types/yargs": "^15.0.14", |
53 | | - "@zeit/ncc": "^0.21.0", |
54 | | - "aws-sdk": "^2.1009.0", |
55 | 60 | "chalk": "^4.1.2", |
56 | 61 | "eslint": "^7.32.0", |
57 | 62 | "eslint-config-neo": "^0.6.2", |
58 | 63 | "husky": "7.0.2", |
59 | 64 | "ini": "1.3.8", |
60 | | - "inquirer": "7.3.3", |
61 | 65 | "jest": "^27.2.5", |
62 | 66 | "lint-staged": "11.2.3", |
63 | 67 | "prettier": "2.4.1", |
| 68 | + "prompts": "^2.4.2", |
64 | 69 | "rimraf": "3.0.2", |
| 70 | + "rollup": "^2.60.2", |
| 71 | + "rollup-plugin-terser": "^7.0.2", |
| 72 | + "rollup-plugin-uglify": "^6.0.4", |
65 | 73 | "ts-jest": "^27.0.7", |
66 | 74 | "ts-node": "10.3.0", |
| 75 | + "tslib": "^2.3.1", |
67 | 76 | "typescript": "4.4.4", |
68 | 77 | "yargs": "15.4.1" |
69 | 78 | } |
|
0 commit comments