forked from workbenchdev/Workbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.04 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
{
"private": true,
"devDependencies": {
"@babel/eslint-parser": "^7.22.11",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"events": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"ltx": "git://github.com/xmppjs/ltx.git#d351ffa26ef1c5f2fbee7888d0bcd5047eb8a988",
"postcss": "^8.4.14",
"prettier": "3.0.3",
"rollup": "^2.76.0",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-node-polyfills": "^0.2.1"
},
"type": "module",
"scripts": {
"postinstall": "rollup -c rollup.config.js",
"prepare": "husky install"
},
"lint-staged": {
"*.{css,json,md,yaml,yml}": "prettier --write",
"*.{js,cjs,mjs}": "eslint --fix",
"*.rs": "flatpak run --user --command=/usr/lib/sdk/rust-stable/bin/rustfmt --filesystem=host org.gnome.Sdk//45 --edition 2021"
}
}