* docs improvements * many changes * prompt changes * add refetch comment * fix: checkout subscription data * cus eligibility fixes * rm cursor thing --------- Co-authored-by: Ayush Rodrigues <joesj2905@gmail.com> Co-authored-by: John Yeo <johnyeocx@gmail.com> Co-authored-by: John Yeo <51376134+johnyeocx@users.noreply.github.com> Co-authored-by: Ayush <74830628+ay-rod@users.noreply.github.com>
118 lines
2.8 KiB
JSON
118 lines
2.8 KiB
JSON
{
|
|
"name": "atmn",
|
|
"version": "1.1.3",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"atmn": "dist/cli.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/useautumn/typescript"
|
|
},
|
|
"homepage": "https://docs.useautumn.com/api-reference/cli/getting-started",
|
|
"main": "dist/compose/index.js",
|
|
"types": "dist/src/compose/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/compose/index.d.ts",
|
|
"import": "./dist/compose/index.js",
|
|
"default": "./dist/compose/index.js"
|
|
},
|
|
"./skills": {
|
|
"types": "./src/prompts/skills/index.ts",
|
|
"import": "./src/prompts/skills/index.ts",
|
|
"default": "./src/prompts/skills/index.ts"
|
|
}
|
|
},
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"scripts": {
|
|
"ts": "bunx tsgo --build --noEmit",
|
|
"build": "bun run bun.config.ts",
|
|
"dev": "nodemon -e ts,tsx --watch src --ignore dist --exec \"bun run bun.config.ts\"",
|
|
"dev:bun": "bun run dev.ts",
|
|
"test": "bun test",
|
|
"test:watch": "bun test --watch",
|
|
"test2": "prettier --check . && xo && ava",
|
|
"test-cli": "node --trace-deprecation -- ./dist/cli.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"package.json",
|
|
"README.md"
|
|
],
|
|
"dependencies": {
|
|
"@autumn/shared": "workspace:*",
|
|
"@inkjs/ui": "^2.0.0",
|
|
"@inquirer/prompts": "^7.6.0",
|
|
"@mishieck/ink-titled-box": "^0.3.0",
|
|
"@tanstack/react-query": "^5.90.17",
|
|
"@types/prettier": "^3.0.0",
|
|
"arctic": "^3.7.0",
|
|
"axios": "^1.10.0",
|
|
"cfonts": "^3.3.1",
|
|
"chalk": "^5.2.0",
|
|
"clipboardy": "^5.0.2",
|
|
"commander": "^14.0.0",
|
|
"dotenv": "^17.2.0",
|
|
"ervy": "^1.0.7",
|
|
"ink": "^6.6.0",
|
|
"ink-big-text": "^2.0.0",
|
|
"ink-chart": "^0.1.1",
|
|
"ink-confirm-input": "^2.0.0",
|
|
"ink-scroll-list": "^0.4.1",
|
|
"ink-scroll-view": "^0.3.5",
|
|
"ink-select-input": "^6.2.0",
|
|
"ink-spinner": "^5.0.0",
|
|
"ink-table": "^3.1.0",
|
|
"ink-text-input": "^6.0.0",
|
|
"inquirer": "^12.7.0",
|
|
"jiti": "^2.4.2",
|
|
"open": "^10.1.2",
|
|
"prettier": "^3.6.2",
|
|
"react": "^19.2.3",
|
|
"yocto-spinner": "^1.0.0",
|
|
"zod": "^4.0.0",
|
|
"conf": "^13.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@sindresorhus/tsconfig": "^3.0.1",
|
|
"@types/bun": "^1.3.10",
|
|
"@types/node": "^24.0.10",
|
|
"@types/react": "^19.0.0",
|
|
"@typescript/native-preview": "^7.0.0-dev.20260316.1",
|
|
"@vdemedes/prettier-config": "^2.0.1",
|
|
"ava": "^5.2.0",
|
|
"cli-testing-library": "^3.0.1",
|
|
"eslint-config-xo-react": "^0.27.0",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"ink-testing-library": "^3.0.0",
|
|
"nodemon": "^3.1.11",
|
|
"react-devtools-core": "^6.1.2",
|
|
"ts-node": "^10.9.1",
|
|
"tsup": "^8.5.0",
|
|
"typescript": "^5.0.3",
|
|
"xo": "^0.53.1"
|
|
},
|
|
"ava": {
|
|
"extensions": {
|
|
"ts": "module",
|
|
"tsx": "module"
|
|
},
|
|
"nodeArguments": [
|
|
"--loader=ts-node/esm"
|
|
]
|
|
},
|
|
"xo": {
|
|
"extends": "xo-react",
|
|
"prettier": true,
|
|
"rules": {
|
|
"react/prop-types": "off"
|
|
}
|
|
},
|
|
"prettier": "@vdemedes/prettier-config"
|
|
}
|