-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.21 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.21 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
{
"name": "tabctl",
"version": "0.6.0-rc.3",
"description": "CLI tool to manage and analyze browser tabs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ekroon/tabctl"
},
"keywords": [
"browser",
"tabs",
"cli",
"edge",
"chrome"
],
"engines": {
"node": ">=24"
},
"bin": {
"tabctl": "dist/cli/tabctl.js"
},
"files": [
"dist/cli",
"dist/host",
"dist/shared",
"dist/extension"
],
"scripts": {
"build": "node scripts/gen-version.js && tsc -p tsconfig.json && node scripts/copy-artifacts.js && node scripts/bundle-extension.js && cargo build --manifest-path rust/Cargo.toml --workspace",
"build:launcher": "node scripts/build-launcher.js",
"bump:major": "node scripts/bump-version.js major",
"bump:minor": "node scripts/bump-version.js minor",
"bump:patch": "node scripts/bump-version.js patch",
"bump:alpha": "node scripts/bump-version.js alpha",
"check:targets": "bash scripts/check-targets.sh",
"bump:rc": "node scripts/bump-version.js rc",
"bump:stable": "node scripts/bump-version.js stable",
"rust:check": "cargo check --manifest-path rust/Cargo.toml --workspace --all-targets",
"rust:test": "cargo test --manifest-path rust/Cargo.toml --workspace --all-targets",
"rust:verify": "cargo fmt --manifest-path rust/Cargo.toml --all -- --check && cargo clippy --manifest-path rust/Cargo.toml --workspace --all-targets -- -D warnings && npm run rust:test",
"test": "npm run build && npm run rust:verify",
"test:unit": "npm run rust:test",
"test:integration": "cargo test --manifest-path rust/Cargo.toml --test browser_integration --test browser_coverage --test browser_primitives --test local_commands -- --ignored --nocapture --test-threads=1",
"clean": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\" ",
"prepare": "git rev-parse --git-dir >/dev/null 2>&1 && git config core.hooksPath .githooks || true"
},
"devDependencies": {
"@types/chrome": "^0.0.277",
"@types/node": "^24",
"esbuild": "^0.27.3",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"tabctl-win32-x64": "0.6.0-rc.3"
},
"dependencies": {
"normalize-url": "^8.1.1"
}
}