amaro 0.0.1

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,41 @@
1
+ {
2
+ "name": "amaro",
3
+ "version": "0.0.1",
4
+ "description": "Blessed Node.js TypeScript loader",
5
+ "license": "MIT",
6
+ "type": "commonjs",
7
+ "main": "dist/index.js",
8
+ "homepage": "https://github.com/marco-ippolito/amaro#readme",
9
+ "bugs": {
10
+ "url": "https://github.com/marco-ippolito/amaro/issues"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/marco-ippolito/amaro.git"
15
+ },
16
+ "scripts": {
17
+ "clean": "rimraf dist",
18
+ "lint": "biome lint --write",
19
+ "format": "biome format --write",
20
+ "prepack": "npm run build",
21
+ "postpack": "npm run clean",
22
+ "build": "rspack build",
23
+ "typecheck": "tsc --noEmit",
24
+ "test": "node --test ./test"
25
+ },
26
+ "devDependencies": {
27
+ "@biomejs/biome": "1.8.3",
28
+ "@rspack/cli": "^0.7.5",
29
+ "@rspack/core": "^0.7.5",
30
+ "@types/node": "^20.14.11",
31
+ "rimraf": "^6.0.1",
32
+ "typescript": "^5.5.3"
33
+ },
34
+ "engines": {
35
+ "node": "^20.15.0"
36
+ },
37
+ "exports": {
38
+ "./package.json": "./package.json"
39
+ },
40
+ "files": ["dist", "LICENSE.md"]
41
+ }