-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.03 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.03 KB
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
{
"name": "linkedin-learning-icon-generator",
"version": "1.0.0",
"private": true,
"description": "A Chromium browser extension that enhances LinkedIn Learning video viewing experience with theater mode and custom aspect ratios.",
"main": "generate-icons.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"test": "karma start --single-run",
"test:watch": "karma start",
"check-version": "node scripts/check-version.js",
"version:major": "node scripts/bump-version.js major",
"version:minor": "node scripts/bump-version.js minor",
"version:patch": "node scripts/bump-version.js patch",
"prepackage": "npm run check-version",
"package": "npm run build && cd dist && powershell \"$version = (Get-Content ../manifest.json | ConvertFrom-Json).version; Compress-Archive -Path * -DestinationPath ../linkedin-learning-enhancer-$version.zip -Force\" && cd ..",
"package:bash": "npm run build && cd dist && VERSION=$(node -p \"require('../manifest.json').version\") && zip -r ../linkedin-learning-enhancer-$VERSION.zip * && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmjoia/LinkedInLearning-extension.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rmjoia/LinkedInLearning-extension/issues"
},
"homepage": "https://github.com/rmjoia/LinkedInLearning-extension#readme",
"devDependencies": {
"@types/chrome": "^0.1.24",
"@types/jasmine": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"copy-webpack-plugin": "^13.0.1",
"eslint": "^9.37.0",
"jasmine-core": "^5.12.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "^5.0.1",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
}
}