@octoseq/visualiser 0.1.0-main.4f31910

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.
Files changed (1) hide show
  1. package/package.json +31 -0
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@octoseq/visualiser",
3
+ "version": "0.1.0-main.4f31910",
4
+ "description": "WASM-based visualiser for Octoseq",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/rewbs/octoseq.git",
9
+ "directory": "packages/visualiser"
10
+ },
11
+ "scripts": {
12
+ "build": "echo 'Skipping WASM build - prebuilt artifacts are published to npm'",
13
+ "build:wasm": "wasm-pack build --target web --out-name visualiser --out-dir pkg"
14
+ },
15
+ "type": "module",
16
+ "main": "pkg/visualiser.js",
17
+ "module": "pkg/visualiser.js",
18
+ "exports": {
19
+ ".": "./pkg/visualiser.js"
20
+ },
21
+ "types": "pkg/visualiser.d.ts",
22
+ "files": [
23
+ "pkg"
24
+ ],
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "devDependencies": {
29
+ "wasm-pack": "^0.12.1"
30
+ }
31
+ }