-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.17 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
{
"name": "citeease-chrome-extension",
"description": "CiteEase is a Chrome extension that simplifies citations by automatically detecting URLs, DOIs, PMIDs, PMCIDs, and ISBNs on webpages, and generating citations in your preferred style.",
"version": "1.0.2",
"main": "popup.ts",
"type": "commonjs",
"scripts": {
"build": "webpack",
"start": "webpack serve --open",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"./**/*.{js,ts,json,html,css}\""
},
"repository": {
"type": "git",
"url": "https://github.com/ganemedelabs/citeease-chrome-extension.git"
},
"bugs": {
"url": "https://github.com/ganemedelabs/citeease-chrome-extension/issues"
},
"homepage": "https://github.com/ganemedelabs/citeease-chrome-extension#readme",
"keywords": [
"chrome-extension",
"citation",
"reference",
"references",
"bibliography",
"doi",
"isbn",
"pmid",
"pmcid",
"url",
"citation-generator",
"bibliography-generator",
"academic",
"research",
"csl",
"citation-style-language"
],
"author": "ganemedelabs",
"license": "MIT",
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/chrome": "^0.0.287",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"https-browserify": "^1.0.0",
"prettier": "^3.4.1",
"stream-http": "^3.2.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"url": "^0.11.4",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"citeproc": "^2.4.63"
}
}