Skip to content

Commit

Permalink
package.json format
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitdhas committed Jun 25, 2023
1 parent 3cf167f commit 0defbb0
Showing 1 changed file with 58 additions and 1 deletion.
59 changes: 58 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1 +1,58 @@
{"version":"0.1.0","license":"MIT","main":"dist/index.js","typings":"dist/index.d.ts","files":["dist","src"],"engines":{"node":">=10"},"scripts":{"start":"tsdx watch","build":"tsdx build","test":"tsdx test","lint":"tsdx lint","prepare":"tsdx build","size":"size-limit","analyze":"size-limit --why"},"husky":{"hooks":{"pre-commit":"tsdx lint"}},"prettier":{"printWidth":80,"semi":true,"singleQuote":true,"trailingComma":"es5"},"name":"shittier","author":"Rohit Dhas","module":"dist/shittier.esm.js","size-limit":[{"path":"dist/shittier.cjs.production.min.js","limit":"10 KB"},{"path":"dist/shittier.esm.js","limit":"10 KB"}],"devDependencies":{"@size-limit/preset-small-lib":"^8.2.6","husky":"^8.0.3","size-limit":"^8.2.6","tsdx":"^0.14.1","tslib":"^2.5.3","typescript":"^3.9.10"},"dependencies":{"cst":"^0.4.10","yargs":"^17.7.2"}}
{
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "shittier",
"author": "Rohit Dhas",
"module": "dist/shittier.esm.js",
"size-limit": [
{
"path": "dist/shittier.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/shittier.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.6",
"husky": "^8.0.3",
"size-limit": "^8.2.6",
"tsdx": "^0.14.1",
"tslib": "^2.5.3",
"typescript": "^3.9.10"
},
"dependencies": {
"cst": "^0.4.10",
"yargs": "^17.7.2"
}
}

0 comments on commit 0defbb0

Please sign in to comment.