Initial commit
Some checks failed
Publish / publish (push) Failing after 8s
Lint / lint (push) Failing after 8s

This commit is contained in:
Julien Valverdé
2025-01-09 08:42:15 +01:00
commit 2146489fc4
10 changed files with 285 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{
"name": "@thilawyn/reffuse",
"version": "0.1.0",
"type": "module",
"files": [
"./dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"scripts": {
"build": "tsc",
"lint:tsc": "tsc --noEmit",
"clean:cache": "rm -f tsconfig.tsbuildinfo",
"clean:dist": "rm -rf dist",
"clean:node": "rm -rf node_modules"
},
"devDependencies": {
}
}