@furryr/typescript-runtime 1.0.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/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@furryr/typescript-runtime",
3
+ "version": "1.0.0",
4
+ "description": "Run TypeScript directly in your browser",
5
+ "type": "module",
6
+ "main": "dist/typescript-runtime.global.js",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/FurryR/typescript-runtime.git"
10
+ },
11
+ "homepage": "https://github.com/FurryR/typescript-runtime#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/FurryR/typescript-runtime/issues"
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "keywords": [
19
+ "typescript",
20
+ "tsx",
21
+ "browser",
22
+ "babel",
23
+ "runtime"
24
+ ],
25
+ "author": "",
26
+ "license": "MIT",
27
+ "devEngines": {
28
+ "packageManager": {
29
+ "name": "pnpm",
30
+ "version": "^11.5.2",
31
+ "onFail": "download"
32
+ }
33
+ },
34
+ "dependencies": {
35
+ "@babel/generator": "^7.28.5",
36
+ "@babel/parser": "^7.28.5",
37
+ "@babel/traverse": "^7.28.5",
38
+ "@babel/types": "^7.28.5"
39
+ },
40
+ "devDependencies": {
41
+ "@eslint/js": "^10.0.1",
42
+ "@types/babel__generator": "^7.27.0",
43
+ "@types/babel__traverse": "^7.28.0",
44
+ "eslint": "^10.4.1",
45
+ "prettier": "^3.5.3",
46
+ "tsup": "^8.5.1",
47
+ "typescript": "^5.9.3",
48
+ "typescript-eslint": "^8.60.1"
49
+ },
50
+ "scripts": {
51
+ "build": "tsup",
52
+ "typecheck": "tsc --noEmit",
53
+ "lint": "eslint .",
54
+ "lint:fix": "eslint . --fix",
55
+ "check": "pnpm typecheck && pnpm lint && pnpm build",
56
+ "example": "python3 -m http.server 8080",
57
+ "format": "prettier --write .",
58
+ "format:check": "prettier --check .",
59
+ "pack:dry": "pnpm pack --dry-run",
60
+ "publish:npm": "pnpm publish --access public"
61
+ }
62
+ }