rhachet-roles-bhrowser 0.0.0 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "rhachet-roles-bhrowser",
3
3
  "author": "ehmpathy",
4
4
  "description": "browser automation roles and skills, via rhachet",
5
- "version": "0.0.0",
5
+ "version": "0.1.0",
6
6
  "private": false,
7
7
  "repository": "ehmpathy/rhachet-roles-bhrowser",
8
8
  "homepage": "https://github.com/ehmpathy/rhachet-roles-bhrowser",
@@ -27,6 +27,45 @@
27
27
  "/dist",
28
28
  "rhachet.repo.yml"
29
29
  ],
30
+ "scripts": {
31
+ "build:ts": "tsc -p ./tsconfig.build.json",
32
+ "commit:with-cli": "npx cz",
33
+ "fix:format:biome": "biome check --write",
34
+ "fix:format": "npm run fix:format:biome",
35
+ "fix:lint": "biome check --write",
36
+ "fix": "npm run fix:format && npm run fix:lint",
37
+ "build:clean:bun": "rm -f ./bin/*.bc",
38
+ "build:clean:tsc": "(chmod -R u+w dist 2>/dev/null || true) && rm -rf dist/",
39
+ "build:clean": "npm run build:clean:tsc && npm run build:clean:bun",
40
+ "build:compile:tsc": "tsc -p ./tsconfig.build.json && tsc-alias -p ./tsconfig.build.json",
41
+ "build:compile": "npm run build:compile:tsc && npm run build:compile:bun --if-present",
42
+ "build:complete:dist": "rsync -a --prune-empty-dirs --include='*/' --exclude='**/.route/**' --exclude='**/.scratch/**' --exclude='**/.behavior/**' --exclude='**/__test_assets__/**' --exclude='**/*.test.sh' --exclude='**/*.test.ts' --include='**/readme.md' --include='**/*.template.md' --include='**/briefs/**/*.md' --include='**/briefs/**/*.min' --include='**/briefs/*.md' --include='**/briefs/*.min' --include='**/skills/**/*.sh' --include='**/skills/*.sh' --include='**/skills/**/*.ts' --include='**/skills/*.ts' --include='**/skills/**/*.jsonc' --include='**/skills/*.jsonc' --include='**/skills/**/*.stone' --include='**/skills/**/*.guard' --include='**/inits/**/*.sh' --include='**/inits/*.sh' --include='**/inits/**/*.jsonc' --include='**/inits/*.jsonc' --include='**/keyrack.yml' --include='**/boot.yml' --exclude='*' src/ dist/",
43
+ "build:complete:repo": "npx rhachet repo introspect",
44
+ "build:complete": "npm run build:complete:dist && npm run build:complete:repo",
45
+ "build": "npm run build:clean && npm run build:compile && npm run build:complete --if-present",
46
+ "test:commits": "LAST_TAG=$(git describe --tags --abbrev=0 @^ 2> /dev/null || git rev-list --max-parents=0 HEAD) && npx commitlint --from $LAST_TAG --to HEAD --verbose",
47
+ "test:types": "tsc -p ./tsconfig.json --noEmit",
48
+ "test:format:biome": "biome format",
49
+ "test:format": "npm run test:format:biome",
50
+ "test:lint:deps": "npx depcheck -c ./.depcheckrc.yml",
51
+ "test:integration:hold": "jest -c ./jest.integration.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main')",
52
+ "test:lint:biome": "biome check --diagnostic-level=error",
53
+ "test:lint:biome:all": "biome check",
54
+ "test:lint": "npm run test:lint:biome && npm run test:lint:deps",
55
+ "test:unit": "jest -c ./jest.unit.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main') $([ -n $RESNAP ] && echo '--updateSnapshot')",
56
+ "test:integration": "jest -c ./jest.integration.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main') $([ -n $RESNAP ] && echo '--updateSnapshot')",
57
+ "test:acceptance:locally": "npm run build && LOCALLY=true jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests $([ -n $RESNAP ] && echo '--updateSnapshot')",
58
+ "test": "npm run test:commits && npm run test:types && npm run test:format && npm run test:lint && npm run test:unit && npm run test:integration && npm run test:acceptance:locally",
59
+ "test:acceptance": "npm run build && jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests $([ -n $RESNAP ] && echo '--updateSnapshot')",
60
+ "prepush": "npm run test && npm run build",
61
+ "prepublish": "npm run build",
62
+ "preversion": "npm run prepush",
63
+ "postversion": "git push origin HEAD --tags --no-verify",
64
+ "prepare:husky": "husky install && chmod ug+x .husky/*",
65
+ "prepare:rhachet": "rhachet init --keys --hooks --roles mechanic behaver driver reviewer librarian ergonomist architect dispatcher && rhachet roles link --repo bhrowser --role playwright",
66
+ "prepare": "if [ -e .git ] && [ -z $CI ]; then npm run prepare:husky && npm run prepare:rhachet; fi",
67
+ "upgrade:rhachet": "rhachet upgrade"
68
+ },
30
69
  "dependencies": {
31
70
  "as-procedure": "1.1.7",
32
71
  "domain-objects": "0.31.9",
@@ -75,42 +114,5 @@
75
114
  "path": "./node_modules/cz-conventional-changelog"
76
115
  }
77
116
  },
78
- "scripts": {
79
- "build:ts": "tsc -p ./tsconfig.build.json",
80
- "commit:with-cli": "npx cz",
81
- "fix:format:biome": "biome check --write",
82
- "fix:format": "npm run fix:format:biome",
83
- "fix:lint": "biome check --write",
84
- "fix": "npm run fix:format && npm run fix:lint",
85
- "build:clean:bun": "rm -f ./bin/*.bc",
86
- "build:clean:tsc": "(chmod -R u+w dist 2>/dev/null || true) && rm -rf dist/",
87
- "build:clean": "npm run build:clean:tsc && npm run build:clean:bun",
88
- "build:compile:tsc": "tsc -p ./tsconfig.build.json && tsc-alias -p ./tsconfig.build.json",
89
- "build:compile": "npm run build:compile:tsc && npm run build:compile:bun --if-present",
90
- "build:complete:dist": "rsync -a --prune-empty-dirs --include='*/' --exclude='**/.route/**' --exclude='**/.scratch/**' --exclude='**/.behavior/**' --exclude='**/__test_assets__/**' --exclude='**/*.test.sh' --exclude='**/*.test.ts' --include='**/readme.md' --include='**/*.template.md' --include='**/briefs/**/*.md' --include='**/briefs/**/*.min' --include='**/briefs/*.md' --include='**/briefs/*.min' --include='**/skills/**/*.sh' --include='**/skills/*.sh' --include='**/skills/**/*.ts' --include='**/skills/*.ts' --include='**/skills/**/*.jsonc' --include='**/skills/*.jsonc' --include='**/skills/**/*.stone' --include='**/skills/**/*.guard' --include='**/inits/**/*.sh' --include='**/inits/*.sh' --include='**/inits/**/*.jsonc' --include='**/inits/*.jsonc' --include='**/keyrack.yml' --include='**/boot.yml' --exclude='*' src/ dist/",
91
- "build:complete:repo": "npx rhachet repo introspect",
92
- "build:complete": "npm run build:complete:dist && npm run build:complete:repo",
93
- "build": "npm run build:clean && npm run build:compile && npm run build:complete --if-present",
94
- "test:commits": "LAST_TAG=$(git describe --tags --abbrev=0 @^ 2> /dev/null || git rev-list --max-parents=0 HEAD) && npx commitlint --from $LAST_TAG --to HEAD --verbose",
95
- "test:types": "tsc -p ./tsconfig.json --noEmit",
96
- "test:format:biome": "biome format",
97
- "test:format": "npm run test:format:biome",
98
- "test:lint:deps": "npx depcheck -c ./.depcheckrc.yml",
99
- "test:integration:hold": "jest -c ./jest.integration.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main')",
100
- "test:lint:biome": "biome check --diagnostic-level=error",
101
- "test:lint:biome:all": "biome check",
102
- "test:lint": "npm run test:lint:biome && npm run test:lint:deps",
103
- "test:unit": "jest -c ./jest.unit.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main') $([ -n $RESNAP ] && echo '--updateSnapshot')",
104
- "test:integration": "jest -c ./jest.integration.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main') $([ -n $RESNAP ] && echo '--updateSnapshot')",
105
- "test:acceptance:locally": "npm run build && LOCALLY=true jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests $([ -n $RESNAP ] && echo '--updateSnapshot')",
106
- "test": "npm run test:commits && npm run test:types && npm run test:format && npm run test:lint && npm run test:unit && npm run test:integration && npm run test:acceptance:locally",
107
- "test:acceptance": "npm run build && jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests $([ -n $RESNAP ] && echo '--updateSnapshot')",
108
- "prepush": "npm run test && npm run build",
109
- "prepublish": "npm run build",
110
- "preversion": "npm run prepush",
111
- "postversion": "git push origin HEAD --tags --no-verify",
112
- "prepare:husky": "husky install && chmod ug+x .husky/*",
113
- "prepare:rhachet": "rhachet init --keys --hooks --roles mechanic behaver driver reviewer librarian ergonomist architect dispatcher && rhachet roles link --repo bhrowser --role playwright",
114
- "upgrade:rhachet": "rhachet upgrade"
115
- }
116
- }
117
+ "packageManager": "pnpm@10.24.0"
118
+ }