-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.44 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@jymfony/compiler",
"version": "0.5.0-beta.7",
"type": "commonjs",
"author": "Alessandro Chitolina <alekitto@gmail.com>",
"license": "MIT",
"scripts": {
"build-release": "WASM_BINDGEN_WEAKREF=1 wasm-pack build --out-name compiler --target nodejs --release && RUSTFLAGS=\"-C target-feature=+simd128\" WASM_BINDGEN_WEAKREF=1 wasm-pack build --out-dir simd --out-name compiler --target nodejs --release --features=simd --target-dir=simd-target",
"build": "WASM_BINDGEN_WEAKREF=1 wasm-pack build --out-name compiler --target nodejs --dev && RUSTFLAGS=\"-C target-feature=+simd128\" WASM_BINDGEN_WEAKREF=1 wasm-pack build --out-dir simd --out-name compiler --target nodejs --dev --features=simd --target-dir=simd-target",
"pretest": "npm run build",
"test": "mocha tests/wasm/",
"prepublishOnly": "npm run build-release && bash -c 'rm {pkg,simd}/{.gitignore,package.json,LICENSE}'"
},
"main": "index.js",
"types": "index.d.ts",
"devDependencies": {
"@jymfony/util": "^0.1.0-alpha.31",
"expect": "^27.4.2",
"mocha": "^10.2.0",
"prettier": "^3.0.3"
},
"files": [
"index.js",
"index.d.ts",
"lib/_apply_decs_2203_r.js",
"lib/_construct_jobject.js",
"lib/reflection.js",
"pkg/compiler.js",
"pkg/compiler.d.ts",
"pkg/compiler_bg.wasm",
"pkg/compiler_bg.wasm.d.ts",
"simd/compiler.js",
"simd/compiler.d.ts",
"simd/compiler_bg.wasm",
"simd/compiler_bg.wasm.d.ts"
]
}