-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.25 KB
/
package.json
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
{
"name": "fingerprint-pro-fastly-compute-proxy-integration",
"version": "0.3.0",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@fastly/cli": "^10.17.0",
"@fingerprintjs/commit-lint-dx-team": "^0.1.0",
"@fingerprintjs/conventional-changelog-dx-team": "^0.1.0",
"@fingerprintjs/eslint-config-dx-team": "^0.1.0",
"@fingerprintjs/prettier-config-dx-team": "^0.2.0",
"@fingerprintjs/tsconfig-dx-team": "^0.0.2",
"@jest/globals": "^29.7.0",
"@noble/ciphers": "^1.0.0",
"@types/cookie": "^0.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.0",
"@types/pako": "^2.0.3",
"babel-jest": "^29.7.0",
"esbuild": "^0.24.0",
"fastly": "^7.10.0",
"fs": "0.0.1-security",
"husky": "^9.1.5",
"jest": "^29.7.0",
"pako": "^2.1.0",
"path": "^0.12.7",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "5.3.3"
},
"dependencies": {
"@fastly/js-compute": "^3.21.4",
"cookie": "0.7.0"
},
"scripts": {
"assemble": "js-compute-runtime build/index.js bin/main.wasm",
"pack": "fastly compute pack --wasm-binary=./bin/main.wasm && mv pkg/package.tar.gz pkg/fingerprint-fastly-compute-proxy-integration.tar.gz",
"build": "ts-node build.ts && fastly compute metadata --enable && pnpm run assemble && pnpm run pack",
"artifact:create": "fastly compute build",
"deploy": "fastly compute publish",
"dev": "fastly compute serve",
"prepare": "husky",
"lint": "eslint --ext .js,.ts,.mjs --ignore-path .gitignore --max-warnings 0 src/",
"lint:fix": "pnpm lint --fix",
"ci": "ts-node --transpile-only scripts/ci.ts",
"test:mock-e2e": "ts-node scripts/mockTests.ts",
"test": "jest --config jest.config.js",
"test:coverage": "jest --coverage --config jest.config.js",
"test:dts": "echo \"No type tests introduced\" && exit 0"
},
"lint-staged": {
"*.{js,ts,mjs}": "pnpm lint:fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"@fingerprintjs/fingerprintjs-pro-server-api": "^5.2.0"
}
}