-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.94 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "useflytrap",
"version": "0.9.11-2",
"description": "Catch bugs in production and replay them in your local development environment.",
"repository": "useflytrap/flytrap-js",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./transform": {
"import": "./transform/index.mjs",
"require": "./transform/index.cjs",
"types": "./transform/index.d.ts"
},
"./transform/artifacts": {
"import": "./transform/artifacts/index.mjs",
"require": "./transform/artifacts/index.cjs",
"types": "./transform/artifacts/index.d.ts"
},
"./browser": {
"import": "./browser/index.mjs",
"require": "./browser/index.cjs",
"types": "./browser/index.d.ts"
},
"./replay": {
"import": "./replay/index.mjs",
"require": "./replay/index.cjs",
"types": "./replay/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"transform",
"browser"
],
"type": "module",
"scripts": {
"build": "rollup -c",
"dev": "vitest dev",
"dev:playground": "jiti playground/index.ts",
"lint": "pnpm lint:all:eslint && pnpm lint:all:prettier",
"lint:all:eslint": "pnpm lint:eslint --ext .ts,.js,.mjs,.cjs \"{src,test}/**/*.{js,json,ts}\"",
"lint:all:prettier": "pnpm lint:prettier \"{src,test,examples}/**/*.{js,json,ts}\"",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --cache --write --loglevel warn",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "np",
"test": "vitest run",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:types": "tsc --noEmit",
"test:ecosystem": "vitest run test/transform/generate.test.ts && vitest run test/transform/generated-fixtures",
"test:ecosystem:expanded": "vitest run test/transform/ecosystem-expanded.test.ts"
},
"dependencies": {
"@babel/generator": "^7.23.0",
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.23.0",
"c12": "^1.4.1",
"fast-equals": "^5.0.1",
"human-logs": "^0.3.0",
"lilconfig": "^2.1.0",
"magic-string": "^0.30.0",
"mlly": "^1.0.0",
"picocolors": "^1.0.0",
"pkg-dir": "^7.0.0",
"serialize-error": "^11.0.0",
"superjson": "^1.13.1",
"ts-results": "^3.3.0",
"ufo": "^1.0.0",
"unplugin": "^1.3.1"
},
"devDependencies": {
"@happy-dom/global-registrator": "^9.20.3",
"@playwright/test": "^1.41.1",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@supabase/supabase-js": "^2.21.0",
"@trpc/server": "^10.45.0",
"@types/babel__generator": "^7.6.6",
"@types/babel__traverse": "^7.18.3",
"@types/degit": "^2.8.3",
"@types/estree": "1.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@vitest/browser": "^0.30.1",
"acorn": "8.8.2",
"class-transformer": "^0.5.1",
"copy-anything": "^3.0.5",
"degit": "^2.8.4",
"dotenv": "^16.3.1",
"eslint": "8.36.0",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"execa": "^8.0.1",
"expect-type": "0.15.0",
"fs-extra": "^11.2.0",
"jiti": "^1.18.2",
"jsdom": "^22.1.0",
"ms": "3.0.0-canary.1",
"next": "13.4.1",
"prettier": "latest",
"recast": "^0.22.0",
"rollup": "3.19.1",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"safaridriver": "^0.0.4",
"type-fest": "^4.10.2",
"typescript": "^5.2.2",
"unbuild": "^1.2.1",
"vite": "4.2.0",
"vitest": "^0.30.1",
"webdriverio": "^8.8.8",
"zod": "^3.21.4"
},
"packageManager": "[email protected]"
}