-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.63 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
{
"name": "womptron",
"version": "1.1.4",
"description": "A bot that tweets new womps from Cryptovoxels.",
"author": "Ryan Ghods <ryan@ryanio.com>",
"license": "MIT",
"engines": {
"node": ">18"
},
"scripts": {
"postinstall": "yarn build",
"build": "npx tsc",
"start": "NODE_OPTIONS=--max-http-header-size=16384 node dist/index.js",
"start:dev": "NODE_OPTIONS=--max-http-header-size=16384 ts-node src/index.ts",
"test": "jest",
"test:ci": "jest --ci --coverage --watchAll=false --maxWorkers=50%",
"test:coverage": "jest --coverage --maxWorkers=50%",
"test:watch": "jest --watch",
"format": "ultracite format --unsafe && npx tsc --noEmit -p tsconfig.build.json",
"lint": "ultracite lint && npx tsc --noEmit -p tsconfig.build.json"
},
"dependencies": {
"file-api": "^0.10.4",
"node-fetch": "^2.6.7",
"twitter-api-v2": "^1.17.2"
},
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@types/jest": "^29.5.5",
"@types/node": "^22.10.0",
"jest": "^29.7.0",
"lint-staged": "^16.1.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.2.1",
"typescript": "^5.7.2",
"ultracite": "5.2.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"yarn dlx ultracite format"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}