-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.51 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
{
"name": "@amplitude/segment-session-replay-wrapper",
"version": "0.4.0",
"description": "Wrapper to enable usage of Segment with Amplitude's Session Replay product",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"repository": "git@github.com:amplitude/segment-session-replay-wrapper.git",
"author": "Amplitude Inc",
"license": "MIT",
"dependencies": {
"@amplitude/session-replay-browser": "1.13.6",
"@segment/analytics-next": ">=1 <2",
"js-cookie": "^3.0.5",
"tslib": "^2.4.1"
},
"scripts": {
"build": "yarn bundle && yarn build:es5 && yarn build:esm",
"bundle": "rollup --config scripts/build/rollup.config.js",
"bundle:watch": "yarn bundle --watch && yarn build:esm --watch",
"build:es5": "tsc -p ./tsconfig.es5.json",
"build:esm": "tsc -p ./tsconfig.esm.json",
"debug": "yarn bundle && node --enable-source-maps --inspect-brk ./dist/index.js",
"debug:test": "node --inspect-brk ./node_modules/.bin/jest --runInBand .",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"test": "jest --runInBand .",
"version": "yarn version-file && GENERATE_SNIPPET=true yarn build",
"version-file": "echo '// Autogenerated by `yarn version-file`. DO NOT EDIT' > src/version.ts && node -p \"'export const VERSION = \\'' + require('./package.json').version + '\\';'\" >> src/version.ts"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.12",
"@types/js-cookie": "^3",
"@types/node": "20.14.2",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"esbuild": "0.21.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"nodemon": "3.1.3",
"prettier": "3.3.2",
"rimraf": "5.0.7",
"rollup": "^2.79.1",
"rollup-plugin-execute": "^1.1.1",
"rollup-plugin-gzip": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.5",
"typescript": "5.4.5"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}