forked from meta-introspector/client-twitter-eliza-zos
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.74 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
{
"name": "@xnomad/twitter-task-manager",
"version": "0.0.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"axios": "^1.7.9"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.3",
"jest": "^29.7.0",
"prettier": "3.5.1",
"tsup": "8.3.5",
"typescript": "5.7.3",
"turbo": "2.4.4"
},
"scripts": {
"build": "turbo run build",
"prepare": "pnpm build",
"dev": "tsup --format esm --dts --watch",
"start": "node dist/index.js",
"start:task-manager": "pnpm --filter @xnomad/task-manager start:prod",
"start:task-manager-cli": "pnpm --filter @xnomad/task-manager-cli generate",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\" \"debug/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"debug": "tsup debug/test-logger.ts && node dist/test-logger.js"
},
"peerDependencies": {
"whatwg-url": "7.1.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@9.15.7",
"workspaces": [
"packages/*"
]
}