-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 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
{
"name": "rrweb-player",
"version": "2.0.0-alpha.18",
"devDependencies": {
"@rrweb/types": "^2.0.0-alpha.18",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint-plugin-svelte": "^2.37.0",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.14",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.3",
"svelte2tsx": "^0.7.30",
"tslib": "^2.0.0",
"vite": "^5.3.1"
},
"dependencies": {
"@tsconfig/svelte": "^1.0.0",
"@rrweb/replay": "^2.0.0-alpha.18",
"@rrweb/packer": "^2.0.0-alpha.18"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"prepublishOnly": "yarn build",
"start": "vite",
"check-types": "svelte-check --tsconfig ./tsconfig.json",
"prepublish": "yarn build",
"lint": "yarn eslint src/**/*.ts"
},
"description": "rrweb's replayer UI",
"main": "./dist/rrweb-player.umd.cjs",
"module": "./dist/rrweb-player.js",
"unpkg": "./dist/rrweb-player.umd.cjs",
"typings": "dist/rrweb-player.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/rrweb-player.d.ts",
"default": "./dist/rrweb-player.js"
},
"require": {
"types": "./dist/rrweb-player.d.cts",
"default": "./dist/rrweb-player.cjs"
}
},
"./dist/style.css": "./dist/style.css"
},
"files": [
"dist",
"package.json"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/rrweb-io/rrweb.git"
},
"keywords": [
"rrweb"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/rrweb-io/rrweb/issues"
},
"homepage": "https://github.com/rrweb-io/rrweb#readme"
}