motoko
Version:
Compile and run Motoko smart contracts in Node.js or the browser.
99 lines (98 loc) • 2.56 kB
JSON
{
"name": "motoko",
"version": "3.13.2",
"description": "Compile and run Motoko smart contracts in Node.js or the browser.",
"author": "Ryan Vandersmith (https://github.com/rvanasa)",
"license": "Apache-2.0",
"main": "./index.js",
"types": "lib/versions/moc.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dfinity/node-motoko.git"
},
"scripts": {
"build": "rimraf ./lib && tsc -p .",
"prepare": "husky install",
"generate": "node utils/generate",
"test": "jest",
"size-limit": "size-limit",
"precommit": "lint-staged",
"prepublishOnly": "run-s build test"
},
"dependencies": {
"cross-fetch": "3.1.5",
"debug": "4.3.4",
"parse-github-url": "1.0.3",
"sanitize-filename": "1.6.3"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/parse-github-url": "^1.0.3",
"@wasmer/wasi": "^1.0.2",
"axios": "^1.7.8",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"size-limit": "^11.1.6",
"size-limit-node-esbuild": "^0.3.0",
"size-limit-preset-node-lib": "^0.3.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"lint-staged": {
"{lib,contrib,utils}/**/*.{js,ts,jsx,tsx}": [
"prettier --write"
]
},
"directories": {
"lib": "lib",
"example": "examples"
},
"files": [
"index.js",
"interpreter.js",
"src/**/*",
"lib/**/*",
"contrib/**/*",
"versions/latest/**/*",
"packages/latest/**/*"
],
"keywords": [
"motoko",
"language",
"programming-language",
"dfinity",
"smart-contract",
"canister",
"browser",
"ic",
"icp",
"internet-computer",
"blockchain",
"cryptocurrency",
"nft",
"token"
],
"size-limit": [
{
"path": "lib/index.js"
},
{
"path": "packages/latest/base.json"
},
{
"path": "versions/latest/moc.min.js"
},
{
"path": "versions/latest/moc_interpreter.min.js"
},
{
"path": "versions/latest/didc.min.js"
}
]
}