Socket
Socket
Sign inDemoInstall

@uwu-codes/tsconfig

Package Overview
Dependencies
1
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.8 to 1.0.9-bun

21

package.json
{
"name": "@uwu-codes/tsconfig",
"version": "1.0.8",
"version": "1.0.9-bun",
"description": "My TypeScript config for my projects.",
"main": "./esm.tsconfig.json",
"main": "./bun.tsconfig.json",
"files": [

@@ -12,4 +12,4 @@ "esm.tsconfig.json",

".": {
"import": "./esm.tsconfig.json",
"default": "./esm.tsconfig.json"
"default": "./bun.tsconfig.json",
"import": "./bun.tsconfig.json"
},

@@ -19,2 +19,9 @@ "./esm": "./esm.tsconfig.json",

},
"scripts": {
"prepare:bun": "node -e \"const fs=require('fs'),d=process.cwd();fs.cpSync(d+'/package.json',d+'/package.json.bck');const pkg=JSON.parse(fs.readFileSync(d+'/package.json','utf8'));Object.assign(pkg,{version:pkg.version+'-bun',main:'./bun.tsconfig.json',dependencies:{typescript:pkg.dependencies.typescript},exports:{...pkg.exports,'.':{default:'./bun.tsconfig.json',import:'./bun.tsconfig.json'}}}),fs.writeFileSync(d+'/package.json',JSON.stringify(pkg,null,2),'utf8');\"",
"prepare:esm": "node -e \"const fs=require('fs'),d=process.cwd();fs.cpSync(d+'/package.json',d+'/package.json.bck');const pkg=JSON.parse(fs.readFileSync(d+'/package.json','utf8'));Object.assign(pkg,{version:pkg.version+'-esm',main:'./esm.tsconfig.json',exports:{...pkg.exports,'.':{default:'./esm.tsconfig.json',import:'./esm.tsconfig.json'}}}),fs.writeFileSync(d+'/package.json',JSON.stringify(pkg,null,2),'utf8');\"",
"publish:bun": "npm run prepare:bun && npm publish --tag bun --no-git-checks && mv package.json.bck package.json",
"publish:esm": "npm run prepare:esm && npm publish --tag esm --no-git-checks && mv package.json.bck package.json",
"publish:all": "npm publish --no-git-checks && npm run publish:bun && npm run publish:esm"
},
"repository": {

@@ -38,10 +45,4 @@ "type": "git",

"dependencies": {
"@swc/core": "^1.3.41",
"@swc/helpers": "^0.4.14",
"typescript": "^5.0.2"
},
"scripts": {
"prepare:bun": "node -e \"const fs=require('fs'),d=process.cwd();fs.cpSync(d+'/package.json',d+'/package.json.bck');const pkg=JSON.parse(fs.readFileSync(d+'/package.json','utf8'));pkg.dependencies={typescript:pkg.dependencies.typescript},fs.writeFileSync(d+'/package.json',JSON.stringify(pkg,null,2),'utf8');\"",
"publish:bun": "npm run prepare:bun && npm publish --tag bun && mv package.json.bck package.json"
}
}
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc