-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.88 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "bluesky-account-migrator",
"version": "0.3.0",
"description": "A CLI for migrating Bluesky accounts from one PDS to another.",
"repository": {
"type": "git",
"url": "https://github.com/rekmarks/bluesky-account-migrator.git"
},
"keywords": [
"bluesky",
"pds",
"atproto",
"cli"
],
"author": "Erik Marks <rekmarks@protonmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rekmarks/bluesky-account-migrator/issues"
},
"homepage": "https://github.com/rekmarks/bluesky-account-migrator#readme",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"type": "module",
"files": [
"dist/"
],
"bin": {
"bam": "dist/main.mjs"
},
"scripts": {
"build": "pnpm build:ts-bridge && pnpm build:chmod",
"build:test": "pnpm build && pnpm build:test:fakes",
"build:test:fakes": "esbuild ./test/FakeMigration.ts --outfile=./dist/migration/Migration.mjs --bundle --format=esm --target=es2022 --platform=node --packages=external",
"build:ts-bridge": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
"build:chmod": "chmod +x ./dist/main.mjs && chmod +x ./dist/main.cjs",
"lint": "pnpm lint:eslint && pnpm lint:misc --check && pnpm lint:types && pnpm lint:changelog && pnpm lint:dependencies --check",
"lint:changelog": "auto-changelog validate --prettier --repo https://github.com/rekmarks/bluesky-account-migrator.git",
"lint:dependencies": "depcheck && pnpm dedupe",
"lint:eslint": "eslint . --cache",
"lint:misc": "prettier '**/*.json' '**/*.md' '**/*.yml' '!CHANGELOG.md' '!pnpm-lock.yaml' --ignore-path .gitignore --no-error-on-unmatched-pattern",
"lint:types": "tsc --noEmit",
"lint:fix": "pnpm lint:eslint --fix && pnpm lint:misc --write && pnpm lint:types && pnpm lint:changelog && pnpm lint:dependencies",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "vitest run",
"test:e2e": "vitest run -c vitest.config.e2e.ts"
},
"dependencies": {
"@atproto/api": "^0.13.19",
"@atproto/crypto": "^0.4.2",
"@inquirer/prompts": "^7.2.0",
"boxen": "^8.0.1",
"uint8arrays": "^5.1.0",
"wrap-ansi": "^9.0.0",
"yargs": "^17.7.2",
"yoctocolors-cjs": "^2.1.2"
},
"devDependencies": {
"@atproto/xrpc": "^0.6.5",
"@lavamoat/preinstall-always-fail": "^2.1.0",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/create-release-branch": "^3.1.0",
"@metamask/eslint-config": "^14.0.0",
"@metamask/eslint-config-nodejs": "^14.0.0",
"@metamask/eslint-config-typescript": "^14.0.0",
"@metamask/eslint-config-vitest": "^1.0.0",
"@ts-bridge/cli": "^0.6.1",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.10.1",
"@types/yargs": "^17.0.33",
"depcheck": "^1.4.7",
"esbuild": "^0.24.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"zod": "^3.24.1"
},
"engines": {
"node": "^18.20 || ^20.18 || >=22"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"pnpm": {
"onlyBuiltDependencies": []
}
}