UNPKG

1.78 kBJSONView Raw
1{
2 "name": "quickjs-emscripten",
3 "version": "0.29.1",
4 "sideEffects": false,
5 "license": "MIT",
6 "type": "commonjs",
7 "keywords": [
8 "eval",
9 "quickjs",
10 "vm",
11 "interpreter",
12 "runtime",
13 "safe",
14 "emscripten",
15 "wasm"
16 ],
17 "repository": {
18 "type": "git",
19 "url": "https://github.com/justjake/quickjs-emscripten"
20 },
21 "author": {
22 "name": "Jake Teton-Landis",
23 "url": "https://jake.tl"
24 },
25 "files": [
26 "LICENSE",
27 "dist/**/*",
28 "!dist/*.test.js",
29 "!dist/*.tsbuildinfo"
30 ],
31 "scripts": {
32 "build": "npx tsup",
33 "clean": "git clean -fx dist .output",
34 "tsc": "npx tsc -p . --noEmit",
35 "test:vi": "VITEST=1 npx vitest run",
36 "test:node": "npx tsc -p . && ./makeTestPackageJson.ts && node -r source-map-support/register --test ./.output/*node-test*.*js",
37 "test": "npm run test:vi && npm run test:node"
38 },
39 "types": "./dist/index.d.ts",
40 "main": "./dist/index.js",
41 "module": "./dist/index.mjs",
42 "exports": {
43 ".": {
44 "types": "./dist/index.d.ts",
45 "import": "./dist/index.mjs",
46 "require": "./dist/index.js"
47 },
48 "./variants": {
49 "types": "./dist/variants.d.ts",
50 "import": "./dist/variants.mjs",
51 "require": "./dist/variants.js"
52 },
53 "./package.json": "./package.json"
54 },
55 "dependencies": {
56 "@jitl/quickjs-wasmfile-debug-asyncify": "0.29.1",
57 "@jitl/quickjs-wasmfile-debug-sync": "0.29.1",
58 "@jitl/quickjs-wasmfile-release-asyncify": "0.29.1",
59 "@jitl/quickjs-wasmfile-release-sync": "0.29.1",
60 "quickjs-emscripten-core": "0.29.1"
61 },
62 "devDependencies": {
63 "@jitl/quickjs-singlefile-cjs-release-asyncify": "0.29.1",
64 "@jitl/quickjs-singlefile-cjs-release-sync": "0.29.1"
65 },
66 "engines": {
67 "node": ">=16.0.0"
68 }
69}
\No newline at end of file