69 lines
1.8 KiB
JSON
69 lines
1.8 KiB
JSON
{
|
|
"name": "quickjs-emscripten",
|
|
"version": "0.32.0",
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"type": "commonjs",
|
|
"keywords": [
|
|
"eval",
|
|
"quickjs",
|
|
"vm",
|
|
"interpreter",
|
|
"runtime",
|
|
"safe",
|
|
"emscripten",
|
|
"wasm"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/justjake/quickjs-emscripten"
|
|
},
|
|
"author": {
|
|
"name": "Jake Teton-Landis",
|
|
"url": "https://jake.tl"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"dist/**/*",
|
|
"!dist/*.test.js",
|
|
"!dist/*.tsbuildinfo"
|
|
],
|
|
"scripts": {
|
|
"build": "npx tsup",
|
|
"clean": "git clean -fx dist .output",
|
|
"tsc": "npx tsc -p . --noEmit",
|
|
"test:vi": "VITEST=1 npx vitest run",
|
|
"test:node": "npx tsc -p tsconfig.build.json && ./makeTestPackageJson.ts && node --experimental-import-meta-resolve -r source-map-support/register --test ./.output/*node-test*.*js",
|
|
"test": "npm run test:vi && npm run test:node"
|
|
},
|
|
"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"
|
|
},
|
|
"./variants": {
|
|
"types": "./dist/variants.d.ts",
|
|
"import": "./dist/variants.mjs",
|
|
"require": "./dist/variants.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"dependencies": {
|
|
"@jitl/quickjs-wasmfile-debug-asyncify": "0.32.0",
|
|
"@jitl/quickjs-wasmfile-debug-sync": "0.32.0",
|
|
"@jitl/quickjs-wasmfile-release-asyncify": "0.32.0",
|
|
"@jitl/quickjs-wasmfile-release-sync": "0.32.0",
|
|
"quickjs-emscripten-core": "0.32.0"
|
|
},
|
|
"devDependencies": {
|
|
"@jitl/quickjs-singlefile-cjs-release-asyncify": "0.32.0",
|
|
"@jitl/quickjs-singlefile-cjs-release-sync": "0.32.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
}
|
|
} |