-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.24 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
75
76
77
{
"version": "0.0.0-dev",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"bootstrap": "^5.3.3",
"crypto-js": "^4.2.0",
"dompurify": "^3.1.6",
"highlight.js": "^11.10.0",
"jquery": "^3.7.1",
"just-debounce": "^1.1.0",
"magic-string": "^0.30.10",
"nuxeo": "^4.0.3",
"sweetalert2": "^11.12.2",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.8",
"@babel/generator": "^7.24.8",
"@babel/parser": "^7.24.8",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@babel/traverse": "^7.24.8",
"@babel/types": "^7.24.8",
"@rollup/plugin-inject": "^5.0.5",
"chai": "^5.1.1",
"concurrently": "^8.2.2",
"cssnano": "^7.0.4",
"dotenv": "^16.4.5",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.29.1",
"fs-extra": "^11.2.0",
"lightningcss": "^1.25.1",
"rimraf": "^6.0.1",
"rollup-plugin-copy": "^3.5.0",
"terser": "^5.31.2",
"vite": "^5.3.3",
"vite-plugin-file-rename": "^0.0.5"
},
"engines": {
"node": ">=10.12.0"
},
"eslintConfig": {
"env": {
"VENDOR": true,
"node": true
},
"globals": {
"chrome": true
},
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"rules": {
"eol-last": 0,
"quotes": [
2,
"single"
]
}
},
"name": "nuxeo-extension",
"private": true,
"scripts": {
"env:build": "node vite.env.js",
"build:chrome:about": "BUILD_ENTRY=about vite build --mode=chrome",
"build:chrome:content": "BUILD_ENTRY=content vite build --mode=chrome",
"build:chrome:es-reindex": "BUILD_ENTRY=es-reindex vite build --mode=chrome",
"build:chrome:json": "BUILD_ENTRY=json vite build --mode=chrome",
"build:chrome:main": "BUILD_ENTRY=main vite build --mode=chrome",
"build:chrome:options": "BUILD_ENTRY=options vite build --mode=chrome",
"build:chrome:popup": "BUILD_ENTRY=popup vite build --mode=chrome",
"build:chrome": "pnpm run env:build chrome && concurrently --kill-others-on-fail 'npm:build:chrome:*'"
},
"type": "module",
"packageManager": "[email protected]+sha1.9217c800d4ab947a7aee520242a7b70d64fc7638"
}