-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.29 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
{
"name": "openai-forge-browser",
"description": "OpenAI Forge browser extension.",
"license": "AGPL-3.0-or-later",
"version": "0.3.0",
"private": true,
"engines": {
"node": "20"
},
"type": "module",
"scripts": {
"build": "yarn clean && rollup -c",
"clean": "rm -Rf ./dist && (rm -Rf ./*.zip || true)",
"dev": "yarn clean && rollup -c --watch",
"icons": "rm -Rf ./assets/icons && mkdir ./assets/icons && node ./scripts/generateIcons.js && rm -Rf ./assets/icons/*.svg",
"postversion": "node ./scripts/postversion.js && git push origin main --tags",
"test:lint": "eslint .",
"test:type": "tsc --noEmit"
},
"devDependencies": {
"@ivangabriele/eslint-config-typescript-base": "7.1.1",
"@ivangabriele/prettier-config": "3.2.0",
"@ivangabriele/semantic-release-config-no-npm": "3.0.3",
"@ivangabriele/tsconfig-node": "1.2.2",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.2.3",
"@swc/core": "1.5.25",
"@types/chrome": "0.0.268",
"@types/d3-color": "3.1.3",
"@types/firefox-webext-browser": "120.0.3",
"@types/mocha": "10.0.6",
"@types/node": "20.14.2",
"@types/toastify-js": "1.12.3",
"@types/vscode": "1.90.0",
"@types/ws": "8.5.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vscode/test-electron": "2.4.0",
"@vscode/vsce": "2.27.0",
"d3-color": "3.1.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-sort-destructure-keys": "1.6.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.2.0",
"execa": "7.2.0",
"mocha": "10.4.0",
"postcss": "8.4.31",
"prettier": "2.8.8",
"rollup": "3.29.4",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-swc3": "0.11.2",
"semantic-release": "21.1.2",
"sharp": "0.32.6",
"tslib": "2.6.3",
"typescript": "5.4.5",
"ws": "8.17.1"
},
"packageManager": "yarn@4.2.2",
"prettier": "@ivangabriele/prettier-config"
}