-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.16 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
{
"name": "@mlc-ai/web-agent-interface",
"version": "0.0.3",
"description": "A tool library for LLM agent in browsers to interact with the web.",
"main": "lib/index.js",
"type": "module",
"scripts": {
"build": "tsc && webpack --config webpack.config.cjs",
"lint": "eslint . && prettier --check \"./**/*.{ts,tsx,json}\"",
"test": "jest",
"format": "prettier --write \"./**/*.{ts,tsx,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlc-ai/web-agent-interface.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mlc-ai/web-agent-interface/issues"
},
"homepage": "https://github.com/mlc-ai/web-agent-interface#readme",
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/chrome": "^0.0.278",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"babel-loader": "^9.1.3",
"eslint": "^9.9.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}