Files
QR-master/.output/server/node_modules/quickjs-emscripten-core/package.json
2026-07-15 18:08:51 +02:00

49 lines
955 B
JSON

{
"name": "quickjs-emscripten-core",
"version": "0.32.0",
"sideEffects": false,
"license": "MIT",
"type": "commonjs",
"keywords": [
"eval",
"quickjs",
"vm",
"interpreter",
"runtime",
"safe",
"emscripten",
"wasm"
],
"author": {
"name": "Jake Teton-Landis",
"url": "https://jake.tl"
},
"repository": {
"type": "git",
"url": "https://github.com/justjake/quickjs-emscripten"
},
"files": [
"LICENSE",
"dist/**/*",
"!dist/*.test.js",
"!dist/*.tsbuildinfo"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"tsc": "npx tsc -p . --noEmit",
"test": "npx vitest run",
"build": "npx tsup"
},
"dependencies": {
"@jitl/quickjs-ffi-types": "0.32.0"
}
}