UNPKG

libxslt-wasm

Version:

JavaScript bindings for libxslt compiled to WebAssembly

81 lines 2.1 kB
{ "name": "libxslt-wasm", "version": "0.0.12", "type": "module", "description": "JavaScript bindings for libxslt compiled to WebAssembly", "keywords": [ "libxslt", "libxml2", "wasm", "webassembly", "xml", "xslt", "exslt", "xsl" ], "homepage": "https://github.com/jeremy-code/libxslt-wasm#readme", "bugs": "https://github.com/jeremy-code/libxslt-wasm/issues", "license": "MIT", "author": "Jeremy Nguyen <nguyen.jeremyt@gmail.com> (https://jeremy.ng)", "repository": "github:jeremy-code/libxslt-wasm", "files": [ "dist" ], "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./*": { "types": "./dist/*.d.ts", "default": "./dist/*.js" }, "./*.js": { "types": "./dist/*.d.ts", "default": "./dist/*.js" }, "./exslt": { "types": "./dist/exslt/index.d.ts", "default": "./dist/exslt/index.js" }, "./internal": { "types": "./dist/internal/index.d.ts", "default": "./dist/internal/index.js" }, "./output/libxslt.wasm": "./dist/output/libxslt.wasm" }, "devDependencies": { "@eslint/js": "^9.26.0", "@jest/globals": "^29.7.0", "@types/node": "^22.15.21", "eslint": "^9.26.0", "eslint-import-resolver-typescript": "^4.3.5", "eslint-plugin-import-x": "^4.12.2", "eslint-plugin-jest": "^28.11.0", "eslint-plugin-n": "^17.18.0", "eslint-plugin-promise": "^7.2.1", "husky": "^9.1.7", "jest": "^29.7.0", "jest-config": "^29.7.0", "lint-staged": "^16.0.0", "prettier": "^3.5.3", "ts-jest": "^29.3.4", "typescript": "^5.8.3", "typescript-eslint": "^8.32.0" }, "engines": { "node": ">=19.2.0" }, "scripts": { "typecheck": "tsc --noEmit", "build": "tsc", "build:libxslt": "./scripts/build.sh", "compile": "./scripts/compile.sh", "test": "jest", "test:watch": "jest --watch", "lint": "eslint", "lint:fix": "eslint --fix", "format": "prettier . --write", "format:check": "prettier . --check" } }