-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
70
71
72
73
74
{
"name": "inclusive-code-comments",
"description": "Checks your comments anywhere on the web: GitHub or Azure DevOps!",
"version": "3.1.4",
"homepage": "https://github.com/jonathanpeppers/inclusive-code-comments",
"author": "Jonathan Peppers",
"repository": {
"type": "git",
"url": "https://github.com/jonathanpeppers/inclusive-code-comments"
},
"scripts": {
"start": "xt-build -e dev -w",
"start:firefox": "xt-build -e dev -p firefox -w",
"build": "xt-build -e prod",
"build:firefox": "xt-build -e prod -p firefox",
"clean": "xt-clean",
"docs": "xt-docs",
"test": "xt-test",
"sync": "xt-sync"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintIgnore": [
"test/**/*"
],
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/chrome": "^0.0.297",
"@types/mocha": "^10.0.10",
"extension-cli": "^1.2.4",
"global": "^4.3.2",
"onnxruntime-node": "^1.20.1"
},
"xtdocs": {
"source": {
"include": [
"src"
]
},
"templates": {
"systemName": "inclusive-code-comments",
"systemSummary": "Checks your comments anywhere on the web: GitHub or Azure DevOps!",
"systemColor": "#4CAF50"
}
},
"xtbuild": {
"js_bundles": [
{
"name": "packed",
"src": [
"_import.js",
"./src-packed/*.js"
]
}
],
"copyAsIs": [
"./src/**/*"
]
},
"dependencies": {
"@microsoft/applicationinsights-web": "^3.3.4",
"onnxruntime-web": "^1.20.1",
"webpack": "^5.97.1"
},
"overrides": {
"braces": "3.0.3",
"chai": "4.3.10",
"jsdoc": "4.0.2",
"mocha": "10.2.0"
}
}