@srcmap/sourcemap-wasm 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 +32 -0
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@srcmap/sourcemap-wasm",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "High-performance source map parser and consumer powered by Rust (WebAssembly)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "pkg/srcmap_sourcemap_wasm.js",
|
|
7
|
+
"types": "pkg/srcmap_sourcemap_wasm.d.ts",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"files": [
|
|
10
|
+
"pkg/"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "wasm-pack build --target nodejs",
|
|
14
|
+
"build:web": "wasm-pack build --target web",
|
|
15
|
+
"build:bundler": "wasm-pack build --target bundler"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/bartwaardenburg/srcmap"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"sourcemap",
|
|
23
|
+
"source-map",
|
|
24
|
+
"parser",
|
|
25
|
+
"consumer",
|
|
26
|
+
"lookup",
|
|
27
|
+
"rust",
|
|
28
|
+
"wasm",
|
|
29
|
+
"webassembly",
|
|
30
|
+
"performance"
|
|
31
|
+
]
|
|
32
|
+
}
|