-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 781 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 781 Bytes
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
{
"scripts": {
"build": "webpack",
"dev": "webpack --watch",
"lint": "eslint .",
"clean": "rm -rf dist/*"
},
"name": "athena-deepcite",
"version": "1.0.0",
"main": "index.js",
"keywords": [
"chrome-extension",
"fact-checking",
"citation",
"research"
],
"author": "",
"license": "ISC",
"description": "A Chrome extension for verifying factual claims with source citations",
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/chrome": "^0.0.304",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"eslint": "^9.22.0",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.27.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}