Skip to content

Commit 58ecb51

Browse files
Dilan OzkaynakDilan Ozkaynak
Dilan Ozkaynak
authored and
Dilan Ozkaynak
committed
publish version
0 parents  commit 58ecb51

27 files changed

+2298
-0
lines changed

.gitignore

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# dependencies
2+
node_modules
3+
4+
# production
5+
build
6+
7+
# misc
8+
.DS_Store
9+
*.pem
10+
11+
# debug
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
.pnpm-debug.log*
16+
17+
# local env files
18+
.env*.local
19+
.env
20+
21+
# typescript
22+
*.tsbuildinfo
23+
24+
# Miscellaneous
25+
.vscode

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v18.16.0

package.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "strz",
3+
"version": "1.0.0",
4+
"main": "build/index.js",
5+
"types": "build/index.d.ts",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/dilan-dio4/strz"
9+
},
10+
"license": "MIT",
11+
"scripts": {
12+
"prettier-format": "prettier --config prettier.config.js 'src/**/*{.ts,.tsx,.js,.jsx}' --write",
13+
"build": "tsc -p ./tsconfig.json"
14+
},
15+
"author": "dilan-dio4",
16+
"devDependencies": {
17+
"@changesets/cli": "^2.26.1",
18+
"@types/node": "^18.15.11",
19+
"prettier": "^2.8.7",
20+
"shx": "^0.3.4",
21+
"ts-node": "^10.9.1",
22+
"typescript": "^5.0.4"
23+
}
24+
}

0 commit comments

Comments
 (0)