@cookyay/scanner 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 ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@cookyay/scanner",
3
+ "version": "0.1.0",
4
+ "description": "CLI cookie scanner for cookyay — crawls a site and emits a consent config",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "engines": {
8
+ "node": ">=20"
9
+ },
10
+ "bin": {
11
+ "cookyay-scan": "./dist/cli.js"
12
+ },
13
+ "main": "./dist/index.js",
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "import": "./dist/index.js"
18
+ }
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "LICENSE"
23
+ ],
24
+ "publishConfig": {
25
+ "provenance": true
26
+ },
27
+ "scripts": {
28
+ "prebuild": "node scripts/ingest-ocd.mjs --offline",
29
+ "build": "tsup",
30
+ "typecheck": "tsc --noEmit",
31
+ "lint": "eslint src",
32
+ "test": "vitest run",
33
+ "test:e2e": "playwright test"
34
+ },
35
+ "dependencies": {
36
+ "playwright": "^1.50.0"
37
+ },
38
+ "devDependencies": {
39
+ "@axe-core/playwright": "^4.11.3",
40
+ "@eslint/js": "^9.0.0",
41
+ "@playwright/test": "^1.50.0",
42
+ "@types/node": "^22.0.0",
43
+ "eslint": "^9.0.0",
44
+ "tsup": "^8.0.0",
45
+ "typescript": "^5.7.0",
46
+ "typescript-eslint": "^8.0.0",
47
+ "vitest": "^3.0.0"
48
+ }
49
+ }