vibemole 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.
Files changed (2) hide show
  1. package/dist/index.js +2565 -0
  2. package/package.json +35 -0
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "vibemole",
3
+ "version": "0.1.0",
4
+ "description": "VibeMole CLI — collect local privacy/security evidence and upload it for grading.",
5
+ "type": "module",
6
+ "bin": {
7
+ "vibemole": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "engines": {
13
+ "node": ">=20"
14
+ },
15
+ "scripts": {
16
+ "build": "npm run typecheck",
17
+ "build:bundle": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js --format=esm --external:playwright --minify",
18
+ "prepublishOnly": "npm run build:bundle",
19
+ "test": "tsx --test src/**/*.test.ts",
20
+ "typecheck": "tsc --noEmit",
21
+ "dev": "tsx src/index.ts"
22
+ },
23
+ "dependencies": {
24
+ "playwright": "^1.58.2"
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^25.5.0",
28
+ "@vibemole/consent-browser": "file:../../packages/consent-browser",
29
+ "@vibemole/domain-signals": "file:../../packages/domain-signals",
30
+ "@vibemole/evidence-schema": "file:../../packages/evidence-schema",
31
+ "esbuild": "^0.28.0",
32
+ "tsx": "^4.21.0",
33
+ "typescript": "^5.9.3"
34
+ }
35
+ }