Comparing version 1.0.1 to 1.0.3
{ | ||
"name": "decky", | ||
"version": "1.0.1", | ||
"version": "1.0.3", | ||
"keywords": [ | ||
@@ -19,8 +19,11 @@ "typescript", | ||
], | ||
"types": "./types.d.ts", | ||
"description": "Use experimental decorators with zero runtime overhead.", | ||
"author": "@jarred-sumner", | ||
"module": "./index.mjs", | ||
"repository": "https://github.com/jarred-sumner/decky", | ||
"homepage": "https://github.com/jarred-sumner/decky", | ||
"scripts": { | ||
"build": "node build.js" | ||
"build": "node build.js", | ||
"types": "tsc --esModuleInterop --downlevelIteration --emitDeclarationOnly --declaration index.ts decorators.ts" | ||
}, | ||
@@ -30,3 +33,8 @@ "main": "./index.js", | ||
"./index", | ||
"./decorators" | ||
"./index.mjs", | ||
"./index.d.ts", | ||
"./decorators.d.ts", | ||
"./decorators", | ||
"./decorators.mjs", | ||
"./types.d.ts" | ||
], | ||
@@ -33,0 +41,0 @@ "dependencies": { |
4500