Files
antisocial/package.json
T
thatguygriffandClaude Opus 5 43dc10e1dc
CI / Typecheck, test, build (pull_request) Successful in 14s
Publish / Build and push (pull_request) Successful in 20s
Publish / Move the working version on (pull_request) Skipped
Set the working version to 1.2.2
1.2.1 shipped, so the tree was left on a version that is published and
immutable, which is the thing the bump job exists to prevent. It failed before
it got that far. Done by hand here, once: the job only fires on a tag, so no
re-run of it will do this retroactively.

Co-Authored-By: Claude Opus 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XBT25ZDzm453A8XViSRqRB
2026-08-27 20:35:36 -03:00

31 lines
843 B
JSON

{
"name": "antisocial",
"version": "1.2.2",
"private": true,
"description": "Reads social posts back to you without the app.",
"license": "UNLICENSED",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"start": "node dist/server.js",
"dev": "node --watch --experimental-strip-types src/server.ts",
"test": "node --test --experimental-strip-types \"test/**/*.test.ts\"",
"resolve": "node --experimental-strip-types bin/resolve.ts",
"probe": "node --experimental-strip-types bin/probe.ts"
},
"dependencies": {
"@fastify/static": "10.1.3",
"fastify": "5.12.1",
"lru-cache": "11.5.2",
"playwright": "1.62.1"
},
"devDependencies": {
"@types/node": "26.3.0",
"typescript": "7.0.2"
}
}