runcheck 0.1.0

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 ADDED
@@ -0,0 +1,3 @@
1
+ # Runcheck
2
+
3
+ Runtime type checks for typescript
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.main = void 0;
4
+ function main() {
5
+ console.log('Work in progress...');
6
+ }
7
+ exports.main = main;
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "runcheck",
3
+ "version": "0.1.0",
4
+ "license": "MIT",
5
+ "scripts": {
6
+ "test": "vitest run",
7
+ "test:ui": "vitest --ui",
8
+ "build": "vitest run && tsc -p tsconfig.prod.json",
9
+ "npm-publish": "pnpm run build && npm publish"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "packageManager": "^pnpm@7.6.0",
15
+ "repository": "github:lucasols/runcheck",
16
+ "author": "Lucas Santos",
17
+ "main": "./dist/runcheck.js",
18
+ "types": "./dist/runcheck.d.ts",
19
+ "engines": {
20
+ "node": ">=14.6.0"
21
+ },
22
+ "devDependencies": {
23
+ "@types/node": "^18.7.2",
24
+ "@vitest/ui": "^0.21.1",
25
+ "typescript": "^4.7.4",
26
+ "vite": "^3.0.7",
27
+ "vitest": "^0.21.1"
28
+ }
29
+ }