-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.09 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.09 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "flow-cloudflare-worker",
"version": "0.6.1",
"description": "Cloudflare Worker for Flow",
"author": "FingerprintJS, Inc (https://fingerprint.com)",
"license": "MIT",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/fingerprintjs/flow-cloudflare-worker.git"
},
"exports": {
"./worker": "./dist/flow_cloudflare_worker/index.js"
},
"scripts": {
"preview:react-spa": "cd test-apps/react-spa && pnpm preview",
"dev": "vite serve --config vite.worker.ts --mode dev",
"watch:instrumentor": "vite build --config vite.instrumentor.ts --watch",
"prepare": "husky && ./scripts/setup-wrangler.sh && pnpm build:instrumentor && pnpm build:agent-processor",
"build": "pnpm build:instrumentor && pnpm build:agent-processor && pnpm build:worker",
"build:worker": "vite build --config vite.worker.ts",
"build:instrumentor": "vite build --config vite.instrumentor.ts",
"build:agent-processor": "vite build --config vite.agent-processor.ts",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"lint:fix": "pnpm lint --fix",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:coverage:diff": "vitest run --coverage --reporter json --outputFile.json=report.json",
"test:attach": "vitest --inspect=9229 --no-file-parallelism",
"wrangler:deploy": "pnpm build && wrangler deploy",
"wrangler:types": "wrangler types --strict-vars=false",
"changeset:publish": "HUSKY=0 changeset publish",
"changeset:version": "changeset version"
},
"lint-staged": {
"*.{js,ts}": "pnpm run lint:fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"zod": "4.1.13"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@cloudflare/vite-plugin": "^1.13.14",
"@cloudflare/vitest-pool-workers": "^0.9.14",
"@commitlint/cli": "^19.8.0",
"@fingerprintjs/changesets-changelog-format": "^0.2.0",
"@fingerprintjs/commit-lint-dx-team": "^0.1.0",
"@fingerprintjs/conventional-changelog-dx-team": "^0.1.0",
"@fingerprintjs/eslint-config-dx-team": "^0.2.0",
"@fingerprintjs/prettier-config-dx-team": "^0.2.0",
"@fingerprintjs/tsconfig-dx-team": "^0.0.2",
"@fingerprintjs/url-matcher": "^0.1.2",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@vitest/coverage-istanbul": "^3.2.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"happy-dom": "^20.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.0",
"prettier": "^3.6.2",
"rimraf": "^5.0.5",
"typescript": "^5.9.2",
"vite": "^7.1.11",
"vite-plugin-checker": "^0.10.3",
"vitest": "^3.2.4",
"wrangler": "^4.50.0"
},
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}