-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) 路 1.75 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) 路 1.75 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
{
"name": "torq",
"version": "6.2.1",
"description": "Generates AI images based on Strava activity data.",
"type": "module",
"private": true,
"homepage": "https://github.com/torqlab/torq#readme",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"prepare": "husky",
"clean": "rm -rf dist",
"test": "bun test packages",
"lint": "eslint packages",
"lint:fix": "eslint packages --fix",
"format": "prettier --write packages",
"format:check": "prettier --check packages",
"validate-specs:ai": "bun run --filter @torq/specs-guardrails validate-specs:ai -- --rootDir $(pwd) --systemPrompt $(pwd)/prompts/validate-specs.system.md --userPrompt $(pwd)/prompts/validate-specs.user.md",
"validate-specs:openspec": "bun run --filter @torq/specs-guardrails validate-specs:openspec -- --rootDir $(pwd)",
"ui:dev": "bun run --filter @torq/ui dev",
"server:dev": "bun run --filter @torq/server dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/torqlab/torq.git"
},
"keywords": [
"strava",
"ai",
"image-generation"
],
"author": {
"name": "Bohdan Balov",
"email": "balovbohdan@gmail.com",
"url": "https://balov.dev"
},
"bugs": {
"url": "https://github.com/torqlab/torq/issues"
},
"engines": {
"node": "24.x"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "^9.15.0",
"@fission-ai/openspec": "^0.20.0",
"@types/bun": "^1.3.8",
"bun": "^1.3.6",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^48.10.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.15.0"
},
"dependencies": {},
"peerDependencies": {}
}