amaro 0.0.5 → 0.1.6
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 +10 -1
- package/dist/LICENSE +201 -0
- package/dist/index.js +451 -591
- package/dist/package.json +19 -0
- package/dist/register.mjs +3 -0
- package/package.json +12 -5
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@swc/wasm-typescript",
|
|
3
|
+
"collaborators": [
|
|
4
|
+
"강동윤 <kdy1997.dev@gmail.com>"
|
|
5
|
+
],
|
|
6
|
+
"description": "wasm module for swc",
|
|
7
|
+
"version": "1.7.11",
|
|
8
|
+
"license": "Apache-2.0",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/swc-project/swc.git"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"wasm.js",
|
|
15
|
+
"wasm.d.ts"
|
|
16
|
+
],
|
|
17
|
+
"main": "wasm.js",
|
|
18
|
+
"types": "wasm.d.ts"
|
|
19
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amaro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Node.js TypeScript wrapper",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -17,19 +17,26 @@
|
|
|
17
17
|
"clean": "rimraf dist",
|
|
18
18
|
"lint": "biome lint --write",
|
|
19
19
|
"format": "biome format --write",
|
|
20
|
+
"ci": "biome ci",
|
|
21
|
+
"ci:fix": "biome check --write",
|
|
20
22
|
"prepack": "npm run build",
|
|
21
23
|
"postpack": "npm run clean",
|
|
22
|
-
"build": "
|
|
24
|
+
"build": "node esbuild.config.js",
|
|
23
25
|
"typecheck": "tsc --noEmit",
|
|
24
|
-
"test": "node --test
|
|
26
|
+
"test": "node --test --experimental-test-snapshots \"**/*.test.js\"",
|
|
27
|
+
"test:regenerate": "node --test --experimental-test-snapshots --test-update-snapshots \"**/*.test.js\""
|
|
25
28
|
},
|
|
26
29
|
"devDependencies": {
|
|
27
30
|
"@biomejs/biome": "1.8.3",
|
|
28
|
-
"@rspack/cli": "^0.7.5",
|
|
29
|
-
"@rspack/core": "^0.7.5",
|
|
30
31
|
"@types/node": "^20.14.11",
|
|
32
|
+
"esbuild": "^0.23.0",
|
|
33
|
+
"esbuild-plugin-copy": "^2.1.1",
|
|
31
34
|
"rimraf": "^6.0.1",
|
|
32
35
|
"typescript": "^5.5.3"
|
|
33
36
|
},
|
|
37
|
+
"exports": {
|
|
38
|
+
".": "./dist/index.js",
|
|
39
|
+
"./register": "./dist/register.mjs"
|
|
40
|
+
},
|
|
34
41
|
"files": ["dist", "LICENSE.md"]
|
|
35
42
|
}
|