-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.81 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.81 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
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
{
"name": "wext-manifest-transformer",
"version": "1.3.2",
"description": "Transformer that lets you specify `manifest.json` properties to appear only in specific browsers.",
"license": "MIT",
"repository": "https://github.com/abhijithvijayan/wext-manifest-transformer.git",
"funding": "https://github.com/sponsors/abhijithvijayan",
"author": {
"name": "abhijithvijayan",
"email": "email@abhijithvijayan.in",
"url": "https://abhijithvijayan.in"
},
"engines": {
"node": ">=20"
},
"type": "module",
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"dev": "tsc --outDir lib --watch",
"build": "rimraf lib && tsc --outDir lib",
"pack:list": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"keywords": [
"webextension",
"manifest",
"wext",
"transformer",
"chrome",
"firefox",
"edge",
"brave",
"opera",
"vivaldi",
"arc",
"yandex"
],
"devDependencies": {
"@abhijithvijayan/eslint-config": "^3.0.1",
"@abhijithvijayan/tsconfig": "^1.5.1",
"@swc/core": "^1.15.8",
"@swc/jest": "^0.2.39",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.27",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"cross-env": "^7.0.3",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^17.0.0",
"husky": "^4.3.8",
"jest": "^29.7.0",
"lint-staged": "^11.2.6",
"prettier": "^3.7.4",
"rimraf": "^3.0.2",
"typescript": "5.8.3"
}
}