New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

temis

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

temis - npm Package Compare versions

Comparing version
0.2.1
to
0.3.0
+73
configs/biome/v1/biome.json
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"css": {
"formatter": {
"enabled": true,
"quoteStyle": "double"
},
"linter": {
"enabled": true
}
},
"formatter": {
"attributePosition": "auto",
"enabled": true,
"formatWithErrors": false,
"ignore": [],
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80,
"useEditorconfig": true
},
"javascript": {
"formatter": {
"arrowParentheses": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"quoteStyle": "double",
"enabled": true,
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"semicolons": "always",
"trailingCommas": "all"
}
},
"json": {
"formatter": {
"enabled": true,
"trailingCommas": "none"
},
"parser": {
"allowComments": true,
"allowTrailingCommas": true
}
},
"linter": {
"enabled": true,
"rules": {
"a11y": {},
"all": true,
"complexity": {},
"correctness": {
"noUndeclaredDependencies": "off"
},
"nursery": {},
"performance": {},
"security": {},
"style": {
"noDefaultExport": "off"
},
"suspicious": {}
}
},
"organizeImports": {
"enabled": false
},
"vcs": {
"clientKind": "git",
"defaultBranch": "main",
"enabled": true,
"useIgnoreFile": true
}
}
{
"$schema": "https://next.biomejs.dev/schemas/2.0.0-beta/schema.json"
}
+8
-2
{
"name": "temis",
"version": "0.2.1",
"version": "0.3.0",
"private": false,
"description": "A package that keeps all the settings for great tools in one place, making my TypeScript React development much easier and better, just for me.",
"description": "A package that centralizes settings for tools to simplify and improve TypeScript React development.",
"homepage": "https://github.com/mewisland/temis#readme",

@@ -17,2 +17,8 @@ "bugs": {

"type": "module",
"exports": {
"./configs/biome.json": "./configs/biome/v1/biome.json"
},
"files": [
"configs"
],
"dependencies": {

@@ -19,0 +25,0 @@ "@commitlint/config-conventional": "19.8.0"

{
"conventionalCommits.scopes": ["deps", "release"]
}
{
"extends": ["./configs/biome/biome.json"]
}
export default {
extends: ["./configs/commitlint/commitlint.config.mjs"],
};
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"css": {
"formatter": {
"enabled": true,
"quoteStyle": "double"
},
"linter": {
"enabled": true
}
},
"formatter": {
"attributePosition": "auto",
"enabled": true,
"formatWithErrors": false,
"ignore": [],
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80,
"useEditorconfig": true
},
"javascript": {
"formatter": {
"arrowParentheses": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"quoteStyle": "double",
"enabled": true,
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"semicolons": "always",
"trailingCommas": "all"
}
},
"json": {
"formatter": {
"enabled": true,
"trailingCommas": "none"
},
"parser": {
"allowComments": true,
"allowTrailingCommas": true
}
},
"linter": {
"enabled": true,
"rules": {
"a11y": {},
"all": true,
"complexity": {},
"correctness": {
"noUndeclaredDependencies": "off"
},
"nursery": {},
"performance": {},
"security": {},
"style": {
"noDefaultExport": "off"
},
"suspicious": {}
}
},
"organizeImports": {
"enabled": false
},
"vcs": {
"clientKind": "git",
"defaultBranch": "main",
"enabled": true,
"useIgnoreFile": true
}
}