Socket
Socket
Sign inDemoInstall

textextensions

Package Overview
Dependencies
Maintainers
1
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

textextensions - npm Package Compare versions

Comparing version 6.3.0 to 6.4.0-next.1700546907.d87d602197770a2bdb2561a12d3a9855dad2d75f

edition-types/index.d.ts

35

package.json
{
"title": "The Definitive List of Text Extensions",
"name": "textextensions",
"version": "6.3.0",
"version": "6.4.0-next.1700546907.d87d602197770a2bdb2561a12d3a9855dad2d75f",
"description": "A package that contains an array of every single file extension there is for text files",

@@ -149,2 +149,13 @@ "homepage": "https://github.com/bevry/textextensions",

{
"description": "TypeScript compiled Types with Import for modules",
"directory": "edition-types",
"entry": "index.d.ts",
"tags": [
"compiled",
"types",
"import"
],
"engines": false
},
{
"description": "TypeScript source code made to be compatible with Deno",

@@ -164,3 +175,3 @@ "directory": "edition-deno",

],
"types": "./compiled-types/",
"types": "edition-types/index.d.ts",
"type": "module",

@@ -170,2 +181,3 @@ "main": "edition-es5/index.js",

"node": {
"types": "./edition-types/index.d.ts",
"import": "./edition-es5-esm/index.js",

@@ -175,2 +187,3 @@ "require": "./edition-es5/index.js"

"browser": {
"types": "./edition-types/index.d.ts",
"import": "./edition-browsers/index.js"

@@ -184,7 +197,7 @@ }

"@bevry/update-contributors": "^1.23.0",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"assert-helpers": "^11.4.0",
"binaryextensions": "^6.3.0",
"@types/node": "^20.9.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"assert-helpers": "^11.5.0",
"binaryextensions": "^6.4.0",
"eslint": "^8.54.0",

@@ -195,3 +208,3 @@ "eslint-config-bevry": "^5.0.0",

"filedirname": "^2.10.0",
"kava": "^7.2.0",
"kava": "^7.3.0",
"make-deno-edition": "^1.3.0",

@@ -208,3 +221,3 @@ "prettier": "^3.1.0",

"our:clean": "rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-es5 && npm run our:compile:edition-es5-esm && npm run our:compile:types",
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-es5 && npm run our:compile:edition-es5-esm && npm run our:compile:edition-types",
"our:compile:deno": "make-deno-edition --attempt",

@@ -214,3 +227,3 @@ "our:compile:edition-browsers": "tsc --module ESNext --target ES2022 --outDir ./edition-browsers --project tsconfig.json && ( test ! -d edition-browsers/source || ( mv edition-browsers/source edition-temp && rm -rf edition-browsers && mv edition-temp edition-browsers ) )",

"our:compile:edition-es5-esm": "tsc --module ESNext --target ES5 --outDir ./edition-es5-esm --project tsconfig.json && ( test ! -d edition-es5-esm/source || ( mv edition-es5-esm/source edition-temp && rm -rf edition-es5-esm && mv edition-temp edition-es5-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es5-esm/package.json",
"our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -rf compiled-types && mv edition-temp compiled-types ) )",
"our:compile:edition-types": "tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )",
"our:deploy": "printf '%s\n' 'no need for this project'",

@@ -255,2 +268,2 @@ "our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz",

}
}
}

@@ -74,3 +74,3 @@ <!-- TITLE/ -->

``` typescript
import pkg from 'https://unpkg.com/textextensions@^6.3.0/edition-deno/index.ts'
import pkg from 'https://unpkg.com/textextensions@^6.4.0/edition-deno/index.ts'
```

@@ -82,3 +82,3 @@

<script type="module">
import pkg from '//cdn.skypack.dev/textextensions@^6.3.0'
import pkg from '//cdn.skypack.dev/textextensions@^6.4.0'
</script>

@@ -91,3 +91,3 @@ ```

<script type="module">
import pkg from '//unpkg.com/textextensions@^6.3.0'
import pkg from '//unpkg.com/textextensions@^6.4.0'
</script>

@@ -100,3 +100,3 @@ ```

<script type="module">
import pkg from '//dev.jspm.io/textextensions@6.3.0'
import pkg from '//dev.jspm.io/textextensions@6.4.0'
</script>

@@ -114,2 +114,3 @@ ```

<li><code>textextensions/edition-es5-esm/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES5 for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>
<li><code>textextensions/edition-types/index.d.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled Types with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>
<li><code>textextensions/edition-deno/index.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code made to be compatible with <a href="https://deno.land" title="Deno is a secure runtime for JavaScript and TypeScript, it is an alternative to Node.js">Deno</a></li></ul>

@@ -116,0 +117,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc