53 lines
1.6 KiB
JSON
53 lines
1.6 KiB
JSON
{
|
|
"name": "@automerge/automerge",
|
|
"collaborators": [
|
|
"Orion Henry <orion@inkandswitch.com>",
|
|
"Martin Kleppmann"
|
|
],
|
|
"version": "2.0.1-alpha.5",
|
|
"description": "Javascript implementation of automerge, backed by @automerge/automerge-wasm",
|
|
"homepage": "https://github.com/automerge/automerge-rs/tree/main/wrappers/javascript",
|
|
"repository": "github:automerge/automerge-rs",
|
|
"files": [
|
|
"README.md",
|
|
"LICENSE",
|
|
"package.json",
|
|
"dist/index.d.ts",
|
|
"dist/cjs/**/*.js",
|
|
"dist/mjs/**/*.js",
|
|
"dist/*.d.ts"
|
|
],
|
|
"types": "./dist/index.d.ts",
|
|
"module": "./dist/mjs/index.js",
|
|
"main": "./dist/cjs/index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"lint": "eslint src",
|
|
"build": "tsc -p config/mjs.json && tsc -p config/cjs.json && tsc -p config/declonly.json --emitDeclarationOnly",
|
|
"test": "ts-mocha test/*.ts",
|
|
"deno:build": "denoify && node ./scripts/deno-prefixer.mjs",
|
|
"deno:test": "deno test ./deno-tests/deno.ts --allow-read --allow-net",
|
|
"watch-docs": "typedoc src/index.ts --watch --readme none"
|
|
},
|
|
"devDependencies": {
|
|
"@types/expect": "^24.3.0",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/uuid": "^9.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.46.0",
|
|
"@typescript-eslint/parser": "^5.46.0",
|
|
"denoify": "^1.4.5",
|
|
"eslint": "^8.29.0",
|
|
"fast-sha256": "^1.3.0",
|
|
"mocha": "^10.2.0",
|
|
"pako": "^2.1.0",
|
|
"prettier": "^2.8.1",
|
|
"ts-mocha": "^10.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typedoc": "^0.23.22",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"dependencies": {
|
|
"@automerge/automerge-wasm": "0.1.22",
|
|
"uuid": "^9.0.0"
|
|
}
|
|
}
|