-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.97 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.97 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": "@tego/bot-private",
"private": true,
"version": "0.0.3",
"description": "Tego Bot - High-performance desktop automation library for Node.js, powered by Rust",
"scripts": {
"agent:build": "pnpm --filter @tego/bot-agent build",
"agent:dev": "pnpm --filter @tego/bot-agent dev",
"agent:test": "pnpm --filter @tego/bot-agent test",
"app:build:macos": "./scripts/build-macos-app.sh",
"build": "pnpm rs:build --platform && pnpm ts:build",
"check:fix": "biome check --write",
"check": "biome check",
"commitlint": "commitlint",
"dev": "pnpm -r dev",
"docs:api": "pnpm --filter @tego/botjs docs",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"ex:run": "pnpm --filter @tego/tego-examples ex",
"fmt:fix": "biome format --write",
"fmt": "biome format",
"lint:fix": "biome lint --write",
"lint": "biome lint",
"metadata:sync": "node scripts/sync-package-metadata.js",
"prepare": "simple-git-hooks",
"rs:build": "pnpm --filter @tego/bot build",
"test": "pnpm -r test",
"ts:build": "pnpm --filter @tego/botjs build && pnpm --filter @tego/bot-agent build && pnpm --filter @tego/bot-cli build"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"author": {
"name": "sealday",
"email": "sealday@gmail.com",
"url": "https://github.com/sealday"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.2.3",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/node": "^24.5.2",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.2",
"vitepress": "^1.6.4"
},
"homepage": "https://github.com/tegojs/bot#readme",
"bugs": {
"url": "https://github.com/tegojs/bot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tegojs/bot"
}
}