@seethruhead/cra-payroll 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +183 -0
- package/dist/cra-payroll.js +80082 -0
- package/package.json +33 -0
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@seethruhead/cra-payroll",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Calculate Canadian payroll deductions using CRA's Payroll Deductions Online Calculator",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"cra-payroll": "dist/cra-payroll.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/cra-payroll.js"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "bun run src/cli.ts",
|
|
14
|
+
"build": "bun build --compile src/cli.ts --outfile cra-payroll --external electron",
|
|
15
|
+
"build:npm": "bun build src/cli.ts --outfile dist/cra-payroll.js --target=node",
|
|
16
|
+
"prepublishOnly": "bun run build:npm",
|
|
17
|
+
"test": "bun test src/unit.test.ts",
|
|
18
|
+
"test:integration": "bun test src/integration.test.ts --timeout 120000 --max-concurrency 1",
|
|
19
|
+
"test:all": "bun test --timeout 120000 --max-concurrency 1"
|
|
20
|
+
},
|
|
21
|
+
"keywords": ["canada", "payroll", "cra", "tax", "deductions", "calculator", "pdoc", "rrsp"],
|
|
22
|
+
"author": "",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"neverthrow": "^8.2.0",
|
|
26
|
+
"puppeteer-core": "^24.37.2",
|
|
27
|
+
"remeda": "^2.33.6"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/bun": "^1.3.8",
|
|
31
|
+
"typescript": "^5.9.3"
|
|
32
|
+
}
|
|
33
|
+
}
|