-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.87 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.87 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
112
113
114
115
{
"name": "awps",
"version": "1.7.0",
"description": "awps",
"repository": {
"type": "git",
"url": "git+https://github.com/awps"
},
"bugs": {
"url": "https://github.com/awps"
},
"homepage": "https://github.com/awps",
"dependencies": {
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-less": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.12",
"@fsegurai/codemirror-theme-abcdef": "^6.2.3",
"@fsegurai/codemirror-theme-abyss": "^6.2.3",
"@fsegurai/codemirror-theme-android-studio": "^6.2.3",
"@fsegurai/codemirror-theme-andromeda": "^6.2.3",
"@fsegurai/codemirror-theme-basic-dark": "^6.2.3",
"@fsegurai/codemirror-theme-cobalt2": "^6.0.3",
"@fsegurai/codemirror-theme-forest": "^6.2.3",
"@fsegurai/codemirror-theme-github-dark": "^6.2.3",
"@fsegurai/codemirror-theme-github-light": "^6.2.3",
"@fsegurai/codemirror-theme-gruvbox-dark": "^6.2.3",
"@fsegurai/codemirror-theme-gruvbox-light": "^6.2.3",
"@fsegurai/codemirror-theme-material-dark": "^6.2.3",
"@fsegurai/codemirror-theme-material-light": "^6.2.3",
"@fsegurai/codemirror-theme-monokai": "^6.2.3",
"@fsegurai/codemirror-theme-nord": "^6.2.3",
"@fsegurai/codemirror-theme-palenight": "^6.2.3",
"@fsegurai/codemirror-theme-solarized-dark": "^6.2.3",
"@fsegurai/codemirror-theme-solarized-light": "^6.2.3",
"@fsegurai/codemirror-theme-tokyo-night-day": "^6.2.3",
"@fsegurai/codemirror-theme-tokyo-night-storm": "^6.2.3",
"@fsegurai/codemirror-theme-volcano": "^6.2.3",
"@fsegurai/codemirror-theme-vscode-dark": "^6.2.4",
"@fsegurai/codemirror-theme-vscode-light": "^6.2.4",
"@replit/codemirror-lang-csharp": "^6.2.0",
"codemirror": "^6.0.2",
"js-beautify": "^1.15.4"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@types/chrome": "^0.1.36",
"@types/jest": "^29.5.14",
"@types/js-beautify": "^1.14.3",
"@types/node": "^22.19.7",
"css-loader": "^6.11.0",
"cssnano": "^5.1.15",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"mini-css-extract-plugin": "^2.10.0",
"postcss": "^8.5",
"postcss-loader": "^6.2.1",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^11.1.2",
"prettier": "3.8.1",
"replace-in-file": "^6.3.5",
"ts-loader": "^9.5.4",
"typescript": "^4.9.5",
"webpack": "^5.104.1",
"webpack-cli": "^4.10.0",
"webpack-remove-empty-scripts": "^1.1.1"
},
"scripts": {
"development": "webpack --mode development",
"watch": "webpack --mode development --watch",
"production": "webpack --mode production",
"test": "jest"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 ie version"
]
},
"author": "Andrei Surdu",
"license": "ISC",
"tagy": {
"auto-release": false,
"replace": [
{
"files": "src/manifest.json",
"from": "\"version\": \"\\d+\\.\\d+\\.\\d+\"",
"to": "\"version\": \"__VERSION__\"",
"flags": "g"
}
]
}
}