@isentinel/weld 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/package.json ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "@isentinel/weld",
3
+ "version": "0.1.0",
4
+ "description": "Luau bundler for roblox-ts projects",
5
+ "keywords": [
6
+ "luau",
7
+ "bundler",
8
+ "roblox",
9
+ "rbxts"
10
+ ],
11
+ "homepage": "https://github.com/christopher-buss",
12
+ "bugs": {
13
+ "email": "christopher.buss@pm.me"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/christopher-buss/weld.git"
18
+ },
19
+ "license": "MIT",
20
+ "author": "Christopher Buss <christopher.buss@pm.me> (https://github.com/christopher-buss)",
21
+ "sideEffects": false,
22
+ "type": "module",
23
+ "exports": {
24
+ ".": "./dist/index.mjs",
25
+ "./cli": "./dist/cli.mjs",
26
+ "./package.json": "./package.json"
27
+ },
28
+ "types": "./dist/index.d.mts",
29
+ "bin": {
30
+ "weld": "./bin/weld.js"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "bin",
35
+ "loaders"
36
+ ],
37
+ "dependencies": {
38
+ "@jridgewell/gen-mapping": "0.3.13",
39
+ "@t3-oss/env-core": "0.13.11",
40
+ "arktype": "2.2.0",
41
+ "c12": "4.0.0-beta.4",
42
+ "defu": "6.1.7",
43
+ "dts-bundle-generator": "9.5.1",
44
+ "tinyrainbow": "3.1.0",
45
+ "@isentinel/luau-ast": "0.1.0",
46
+ "@isentinel/rojo-utils": "0.1.0"
47
+ },
48
+ "devDependencies": {
49
+ "@isentinel/eslint-config": "5.0.0-beta.11",
50
+ "@jridgewell/trace-mapping": "0.3.31",
51
+ "@types/node": "24.12.2",
52
+ "@typescript/native-preview": "7.0.0-dev.20260325.1",
53
+ "@vitest/coverage-v8": "4.1.5",
54
+ "@vitest/eslint-plugin": "1.6.16",
55
+ "eslint": "9.39.4",
56
+ "eslint-plugin-jest-extended": "3.0.1",
57
+ "eslint-plugin-n": "17.24.0",
58
+ "eslint-plugin-pnpm": "1.6.0",
59
+ "jest-extended": "7.0.0",
60
+ "tsdown": "0.21.10",
61
+ "typescript": "6.0.3",
62
+ "vitest": "4.1.5"
63
+ },
64
+ "engines": {
65
+ "node": ">=24.10.0"
66
+ },
67
+ "inlinedDependencies": {
68
+ "type-fest": "5.5.0"
69
+ },
70
+ "nx": {
71
+ "name": "weld",
72
+ "tags": [
73
+ "scope:tooling",
74
+ "type:cli"
75
+ ],
76
+ "projectType": "application",
77
+ "includedScripts": [
78
+ "!build"
79
+ ],
80
+ "targets": {
81
+ "build": {
82
+ "command": "tsdown",
83
+ "options": {
84
+ "cwd": "tools/bundler"
85
+ }
86
+ },
87
+ "lint": {
88
+ "command": "eslint",
89
+ "hasTypeAwareRules": true
90
+ },
91
+ "test": {
92
+ "command": "vitest run --coverage",
93
+ "options": {
94
+ "cwd": "tools/bundler"
95
+ }
96
+ }
97
+ }
98
+ },
99
+ "scripts": {
100
+ "typecheck": "tsgo --build --emitDeclarationOnly && lute check src/**/*.luau"
101
+ }
102
+ }