denotify-client 1.1.9 → 1.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.env ADDED
@@ -0,0 +1,9 @@
1
+ DISCORD_WEBHOOK=https://discord.com/api/webhooks/1063967722276388874/VrdsvfyCTEtnRIk5Vzhj1Y0Fi7pFueN5dH9Bz7OeXyNpwJUI7ucIzdIQwpOq8amVgCbW
2
+
3
+
4
+
5
+ PROJECT_ID=xfxplbmdcoukaitzxzei
6
+ ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InhmeHBsYm1kY291a2FpdHp4emVpIiwicm9sZSI6ImFub24iLCJpYXQiOjE2NzgwMDg4NzMsImV4cCI6MTk5MzU4NDg3M30.WLk7bR5syQ4YJ8_jNOAuaT1UMvl7E2MS_VYMs7sN56c
7
+
8
+ EMAIL=s.battenally@gmail.com
9
+ PASSWORD=Password
package/.eslintignore ADDED
@@ -0,0 +1,8 @@
1
+ .history
2
+ .husky
3
+ .vscode
4
+ coverage
5
+ dist
6
+ node_modules
7
+ vite.config.ts
8
+ jest.config.ts
package/.eslintrc ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "root": true,
3
+ "parser": "@typescript-eslint/parser",
4
+ "plugins": ["@typescript-eslint", "prettier"],
5
+ "extends": [
6
+ "eslint:recommended",
7
+ "plugin:@typescript-eslint/eslint-recommended",
8
+ "plugin:@typescript-eslint/recommended",
9
+ "prettier"
10
+ ],
11
+ "env": {
12
+ "browser": true,
13
+ "node": true
14
+ },
15
+ "rules": {
16
+ "prettier/prettier": "error"
17
+ }
18
+ }
package/.lintstagedrc ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "./**/*.{ts,html,json}": "npm run format:scripts",
3
+ "./**/*.{css,scss}": "npm run format:styles"
4
+ }
@@ -0,0 +1,8 @@
1
+ .history
2
+ .husky
3
+ .vscode
4
+ coverage
5
+ dist
6
+ node_modules
7
+ vite.config.ts
8
+ jest.config.ts
package/.prettierrc ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "printWidth": 80,
3
+ "tabWidth": 2,
4
+ "singleQuote": false,
5
+ "trailingComma": "es5",
6
+ "arrowParens": "avoid",
7
+ "bracketSpacing": true,
8
+ "useTabs": false,
9
+ "endOfLine": "auto",
10
+ "singleAttributePerLine": false,
11
+ "bracketSameLine": false,
12
+ "jsxBracketSameLine": false,
13
+ "jsxSingleQuote": false,
14
+ "quoteProps": "as-needed",
15
+ "semi": true
16
+ }
@@ -0,0 +1,8 @@
1
+ .history
2
+ .husky
3
+ .vscode
4
+ coverage
5
+ dist
6
+ node_modules
7
+ vite.config.ts
8
+ jest.config.ts
package/.stylelintrc ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "extends": [
3
+ "stylelint-config-recommended",
4
+ "stylelint-config-sass-guidelines"
5
+ ],
6
+ "overrides": [
7
+ {
8
+ "files": ["**/*.scss"],
9
+ "customSyntax": "postcss-scss"
10
+ }
11
+ ],
12
+ "rules": {
13
+ "function-parentheses-space-inside": null,
14
+ "no-descending-specificity": null,
15
+ "max-nesting-depth": 2,
16
+ "selector-max-id": 1
17
+ }
18
+ }
package/CHANGELOG.md ADDED
File without changes