-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.86 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.86 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "chatbot-cui-checker-extension",
"version": "1.0.0",
"description": "An evaluation tool to check the Accessibility of Conversational AI Interfaces.",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "mocha --tsconfig tsconfig.spec.json test/**/*.spec.ts",
"prettier": "prettier \"src/**/*.{js,ts,vue}\"",
"prettier:write": "npm run prettier -- --write",
"build-prod": "cross-env NODE_ENV=production webpack --config webpack.config-production.js",
"build-dev": "cross-env NODE_ENV=development webpack --config webpack.config-development.js",
"build-debug": "cross-env NODE_ENV=debug node --trace-deprecation ./node_modules/webpack/bin/webpack.js --config webpack.config-debug.js",
"build:dev": "cross-env NODE_ENV=development ./node_modules/webpack/bin/webpack.js --config webpack.config-development.js ",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch",
"watch:debug": "cross-env HMR=true npm run build-debug -- --watch",
"dev": "NODE_ENV=development webpack --watch"
},
"dependencies": {
"@langchain/community": "^0.3.30",
"@langchain/core": "^0.3.40",
"@langchain/langgraph": "^0.3.10",
"@langchain/tavily": "^0.1.4",
"@qualweb/act-rules": "^0.7.3",
"@qualweb/core": "^0.8.5",
"@qualweb/cui-checks": "^0.3.1",
"@qualweb/locale": "^0.2.2",
"@qualweb/qw-page": "^0.3.2",
"@qualweb/util": "^0.6.2",
"@qualweb/wcag-techniques": "^0.4.2",
"@vue/compat": "^3.5.13",
"@vue/runtime-core": "^3.5.13",
"file-saver": "^2.0.2",
"highlight.js": "^11.11.1",
"html2pdf.js": "^0.10.3",
"htmlfy": "^0.6.0",
"vue": "^3.5.13",
"vue-code-highlight": "^0.7.8",
"vue-router": "^4.5.0",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.26.7",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime-corejs3": "^7.4.0",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/chrome": "^0.0.304",
"@types/dotenv": "^6.1.1",
"@types/expect": "^1.20.4",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.6",
"@types/node": "^22.13.4",
"@types/puppeteer": "^5.4.7",
"@types/sinon": "^17.0.3",
"@types/sinon-chrome": "^2.2.16",
"@types/xml-escape": "^1.1.3",
"@types/xmldom": "^0.1.34",
"@vue/compiler-sfc": "^3.5.11",
"archiver": "^3.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^9.2.1",
"chai": "^4.4.1",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"css-loader": "^7.1.2",
"deepmerge": "^4.2.2",
"ejs": "^3.1.10",
"eslint": "^9.20.1",
"eslint-config-standard": "^14.1.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^9.28.0",
"eslint-webpack-plugin": "^4.2.0",
"file-loader": "^6.2.0",
"jsdom": "^26.0.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^2.9.1",
"mocha": "^11.1.0",
"mock-import": "^4.2.1",
"node-fetch": "^3.3.2",
"node-polyfill-webpack-plugin": "^4.1.0",
"npm": "^11.1.0",
"proxyquire": "^2.1.3",
"puppeteer": "^24.2.1",
"sass": "^1.26.2",
"sass-loader": "^16.0.2",
"sinon": "^19.0.2",
"sinon-chrome": "^3.0.1",
"source-map-loader": "^5.0.0",
"terser-webpack-plugin": "^5.3.15",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vue-loader": "^17.3.1",
"vue-style-loader": "^4.1.3",
"web-streams-polyfill": "^4.1.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-ext-reloader": "^1.1.13"
}
}