@rue-js/runtime-vapor 0.0.27

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 +52 -0
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@rue-js/runtime-vapor",
3
+ "version": "0.0.27",
4
+ "description": "Rue runtime implemented in Rust and compiled to WebAssembly",
5
+ "keywords": [
6
+ "rue",
7
+ "runtime",
8
+ "wasm"
9
+ ],
10
+ "homepage": "https://github.com/hunzhiwange/ruejs/tree/main/packages/runtime-vapor#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/hunzhiwange/ruejs/issues"
13
+ },
14
+ "license": "MIT",
15
+ "author": "Xiangmin Liu",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/hunzhiwange/ruejs.git",
19
+ "directory": "packages/runtime-vapor"
20
+ },
21
+ "files": [
22
+ "pkg"
23
+ ],
24
+ "type": "module",
25
+ "types": "./pkg/rue_runtime_vapor.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./pkg/rue_runtime_vapor.d.ts",
29
+ "development": "./pkg/rue_runtime_vapor.js",
30
+ "import": "./pkg/rue_runtime_vapor.js",
31
+ "default": "./pkg/rue_runtime_vapor.js"
32
+ }
33
+ },
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "devDependencies": {
38
+ "c8": "^10.1.3"
39
+ },
40
+ "scripts": {
41
+ "build-dev": "wasm-pack build --release --target bundler --out-dir pkg --features dev",
42
+ "build": "wasm-pack build --release --target bundler --out-dir pkg",
43
+ "build-node": "wasm-pack build --release --target nodejs --out-dir pkg-node --features log --features dev",
44
+ "dev": "wasm-pack watch",
45
+ "docs": "cargo doc --no-deps",
46
+ "test": "wasm-pack test --node",
47
+ "check": "cargo check",
48
+ "fmt": "cargo fmt",
49
+ "test-coverage": "cargo llvm-cov --html --open",
50
+ "test-coverage-js": "c8 --reporter=lcov --reporter=text wasm-pack test --node"
51
+ }
52
+ }