@darlean/core
Version:
Darlean core functionality for creating applications that define, expose and host actors
74 lines (73 loc) • 2.66 kB
JSON
{
"name": "@darlean/core",
"version": "2.0.0-alpha.28",
"description": "Darlean core functionality for creating applications that define, expose and host actors",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://darlean.io",
"repository": {
"type": "git",
"url": "https://gitlab.com/darlean/javascript/repo.git",
"directory": "core"
},
"scripts": {
"build": "shx rm -rf lib/* && tsc",
"test": "npm run test:all",
"test:all": "jest --verbose --runInBand --config jestconfig.json",
"types": "lib/index.d.ts",
"run": "node lib/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "npx eslint ./src --ext .js,.jsx,.ts,.tsx",
"update-deps": "npm install @darlean/base@latest && npm install @darlean/utils@latest",
"prepublish": "npm run build",
"prepublishOnly": "npm run build && npm run lint",
"preversion": "npm run format && npm install && npm run update-deps && npm run lint && npm run build && npm test",
"version": "git add -A src && git add package.json && git add ../package-lock.json && git -C .. tag core-%npm_package_version%",
"postversion": "git commit -m \"Version upgrade to core-%npm_package_version%\" && git push && git push --tags",
"precommit": "npm run format && npm run lint && npm run build",
"npm:version:alpha": "npm version prerelease --preid=alpha --git-tag-version=false",
"npm:publish": "npm publish --access=public",
"doc": "npx typedoc --skipErrorChecking --json typedoc-out.json & npx docgen typedoc-out.json ./docs/",
"update-base-alpha": "npm install @darlean/base@2.0.0-alpha.%npm_config_baseversion%"
},
"keywords": [
"Darlean",
"Core"
],
"author": "Theo van der Donk",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^18.19.4",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-standard-reporter": "^2.0.0",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"files": [
"lib/**/*",
"binaries/**/*",
"NOTICE"
],
"dependencies": {
"@darlean/base": "^2.0.0-alpha.19",
"@darlean/utils": "^2.0.0-alpha.15",
"json5": "^2.2.3",
"nats": "^2.18.0",
"uuid": "^9.0.1"
},
"directories": {
"lib": "lib"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"tsconfig": "./tsconfig.json"
}
}