diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package.json b/package.json index 895c8b2..990ea54 100644 --- a/package.json +++ b/package.json @@ -2,15 +2,15 @@ "name": "digiid-ts", "version": "0.1.0", "description": "A modern TypeScript implementation of the DigiID authentication protocol.", - "main": "dist/index.js", - "module": "dist/index.mjs", + "main": "dist/digiid-ts.umd.js", + "module": "dist/digiid-ts.es.js", "types": "dist/index.d.ts", "type": "module", "files": [ "dist" ], "scripts": { - "build": "tsc && vite build", + "build": "vite build", "dev": "vite", "test": "vitest run", "test:watch": "vitest", @@ -55,6 +55,7 @@ "ts-node": "^10.9.2", "typescript": "^5.8.3", "vite": "^6.2.5", + "vite-plugin-dts": "^4.5.3", "vitest": "^3.1.1" }, "dependencies": { |