diff --git a/cmd/crates/soroban-spec-typescript/src/project_template/package.json b/cmd/crates/soroban-spec-typescript/src/project_template/package.json index dd3f40c7a0..383bf7d193 100644 --- a/cmd/crates/soroban-spec-typescript/src/project_template/package.json +++ b/cmd/crates/soroban-spec-typescript/src/project_template/package.json @@ -1,17 +1,18 @@ { "version": "0.0.0", "name": "INSERT_CONTRACT_NAME_HERE", + "type": "module", + "exports": "./dist/index.js", + "typings": "dist/index.d.ts", + "scripts": { + "build": "tsc" + }, "dependencies": { "@stellar/freighter-api": "2.0.0", "buffer": "6.0.3", "@stellar/stellar-sdk": "12.0.0-rc.3" }, - "scripts": { - "build": "tsc" - }, - "exports": "./dist/index.js", - "typings": "dist/index.d.ts", "devDependencies": { "typescript": "5.3.3" } -} \ No newline at end of file +}