-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.11 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.11 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
{
"private": true,
"name": "astra-deck",
"version": "3.22.0",
"description": "Chrome/Firefox MV3 extension and Tampermonkey userscript for YouTube enhancement",
"author": "SysAdminDoc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SysAdminDoc/Astra-Deck.git"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "node build-extension.js",
"build:userscript": "node build-extension.js --with-userscript",
"build:fixtures": "node scripts/build-selector-fixtures.js",
"audit:storage": "node scripts/audit-storage-size.js",
"check": "node scripts/check-syntax.js && node scripts/check-versions.js && node scripts/check-i18n.js && npm run lint && npm run audit:a11y && npm run audit:contrast",
"check:versions": "node scripts/check-versions.js",
"lint": "eslint extension/background.js",
"audit:a11y": "node scripts/audit-popup-a11y.js",
"audit:contrast": "node scripts/check-contrast.js",
"test": "node --test tests/*.test.js"
},
"dependencies": {
"crx3": "^2.0.0"
},
"devDependencies": {
"eslint": "^10.2.1"
}
}