-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 3.61 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
{
"name": "webrtc-streamer-helper",
"version": "1.4.4",
"description": "webrtc streamer helper",
"scripts": {
"clean:dist": "rimraf dist",
"prepare": "husky install",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:prettier": "prettier --write \"src/**/*.{js,jsx,cjs,json,tsx,ts,css,less,scss,vue,html,md}\"",
"lint:eslint": "eslint --cache --max-warnings 0 \"src/**/*.{js,jsx,cjs,tsx,ts}\" --fix",
"lint:stylelint": "stylelint --cache --fix \"src/**/*.{css,less,scss,styl,postcss,vue}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint": "npx eslint \"src/**/*.{ts,js}\" --fix",
"dev": "concurrently \"npm run src:dev\"",
"src:dev": "rollup -c --watch --bundleConfigAsCjs",
"build:types": "npm run clean:dist && tsc",
"build": "npm run build:types && rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -n changelog-option.js",
"lint-changelog": "concurrently \"npm run lint\" \"npm run changelog\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhensherlock/webrtc-streamer-helper.git"
},
"author": "zhensherlock",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhensherlock/webrtc-streamer-helper/issues"
},
"homepage": "https://github.com/zhensherlock/webrtc-streamer-helper#readme",
"keywords": [
"webrtc-streamer",
"webrtc-streamer-helper"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"webpack": "dist/index.esm.js",
"browser": "dist/index.esm.js",
"unpkg": "dist/index.iife.js",
"jsdelivr": "dist/index.iife.js",
"types": "dist/types/main.d.ts",
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": {
"node": "./index.mjs",
"default": "./dist/index.esm.js"
},
"require": "./dist/index.cjs.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"files": [
"dist",
"index.js",
"index.mjs",
"index.cjs",
"LICENSE",
"README.md"
],
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/google.maps": "^3.55.11",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"conventional-changelog-angular": "^7.0.0",
"conventional-changelog-cli": "^4.1.0",
"cssnano": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rimraf": "^6.0.0",
"rollup": "^4.18.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sass": "^1.13.1",
"stylelint": "^16.6.1",
"stylelint-order": "^6.0.4",
"typescript": "5.6.3"
},
"browserslist": [
"defaults",
"not ie < 8",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
],
"dependencies": {
"eventemitter3": "^5.0.1"
}
}