-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.11 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
{
"name": "@substrate-system/at",
"version": "0.0.8",
"description": "At protocol CLI",
"type": "module",
"main": "dist/cli.js",
"types": "./dist/cli.d.ts",
"bin": {
"at": "dist/cli.js"
},
"files": [
"./dist/*"
],
"scripts": {
"build": "mkdir -p ./dist && rm -rf ./dist/* && npm run build-esm",
"build-esm": "esbuild src/*.ts --format=esm --metafile=dist/meta.json --keep-names --tsconfig=tsconfig.build.json --outdir=./dist --sourcemap && tsc --emitDeclarationOnly --project tsconfig.build.json --outDir dist",
"lint": "eslint \"./**/*.{ts,js}\"",
"toc": "markdown-toc --maxdepth 4 -i README.md",
"start": "node dist/cli.js",
"test": "esbuild --bundle --platform=node ./test/index.ts | node",
"preversion": "npm run lint",
"version": "npm run toc && auto-changelog -p --template keepachangelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md README.md",
"postversion": "git push --follow-tags && npm publish"
},
"dependencies": {
"@atproto/api": "^0.17.3",
"@atproto/crypto": "^0.4.5",
"@atproto/identity": "^0.4.10",
"@inquirer/prompts": "^7.9.0",
"@types/yargs": "^17.0.33",
"chalk": "^5.6.2",
"dotenv": "^17.2.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@substrate-system/tapzero": "^0.10.15",
"@types/node": "^24.8.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"auto-changelog": "^2.5.0",
"esbuild": "^0.25.11",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"markdown-toc": "^1.2.0",
"tap-spec": "^5.0.0",
"typescript": "^5.9.3"
},
"keywords": [
"at",
"protocol",
"cli",
"bluesky",
"typescript",
"node"
],
"homepage": "https://github.com/substrate-system/atproto-shenanigans",
"bugs": {
"url": "https://github.com/substrate-system/atproto-shenanigans/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/substrate-system/atproto-shenanigans.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": "nichoth <nichoth@nichoth.com> (https://nichoth.com)"
}