-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
75 lines (75 loc) · 2.8 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
{
"name": "linkedin-video-downloader",
"version": "0.0.25",
"description": "Google Chrome extension for downloading videos from LinkedIn",
"author": "Yuri Drabik <[email protected]>",
"license": "MIT",
"scripts": {
"dev:options": "npm run clean && parcel src/options/index.html -d build/options",
"dev:build": "env-cmd -f .env.development npm run build",
"prod:build": "env-cmd -f .env.production npm run build",
"prod:dist": "mkdir -p dist && npx crx pack build -o dist/linkedin-video-downloader.crx",
"build:content:css": "sass src/content/sass/index.scss build/content/styles.css",
"build:content:js": "parcel build src/content/index.ts --dist-dir build/content --no-source-maps",
"build:content": "npm run build:content:js && npm run build:content:css",
"build:options": "parcel build src/options/index.html --dist-dir build/options --public-url . --no-source-maps",
"build:bg": "parcel build src/background/index.ts --dist-dir build/background --no-source-maps",
"build:popup": "parcel build src/popup/index.html --dist-dir build/popup --public-url . --no-source-maps",
"build": "npm run clean && npm run build:content && npm run build:bg && npm run build:options && npm run build:popup && npm run cp",
"clean": "rimraf build && rimraf .cache",
"cp": "copyfiles manifest.json assets/**/* build",
"lint": "eslint --ext .ts ./src",
"test": "jest -c ./config/jest.config.js"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"browserslist": [
"last 10 chrome version"
],
"repository": {
"type": "git",
"url": "git://github.com/yurist38/linkedin-video-downloader"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@parcel/transformer-sass": "2.4.0",
"@parcel/transformer-vue": "2.4.0",
"@types/chrome": "0.0.180",
"@types/jest": "27.4.1",
"@types/node": "17.0.23",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"@vue/component-compiler-utils": "3.3.0",
"@vue/test-utils": "2.0.0-rc.18",
"@vue/vue3-jest": "27.0.0-alpha.4",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "27.5.1",
"copyfiles": "2.4.1",
"domexception": "4.0.0",
"env-cmd": "10.1.0",
"eslint": "8.12.0",
"eslint-plugin-vue": "8.5.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"jest-chrome": "0.7.2",
"parcel": "2.4.0",
"process": "0.11.10",
"rimraf": "3.0.2",
"sass": "1.49.9",
"ts-jest": "27.1.4",
"typescript": "4.6.3"
},
"dependencies": {
"@mdi/font": "6.6.96",
"@sentry/browser": "8.33.0",
"equal-vue": "0.731.0",
"ts-debounce": "4.0.0",
"vue": "3.2.31",
"vue-hot-reload-api": "2.3.4",
"vue-property-decorator": "9.1.2"
}
}