65 lines
1.8 KiB
JSON
65 lines
1.8 KiB
JSON
{
|
|
"name": "@automerge/automerge",
|
|
"collaborators": [
|
|
"Orion Henry <orion@inkandswitch.com>",
|
|
"Martin Kleppmann"
|
|
],
|
|
"version": "2.0.1-alpha.2",
|
|
"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",
|
|
"index.d.ts",
|
|
"dist/*.d.ts",
|
|
"dist/cjs/constants.js",
|
|
"dist/cjs/types.js",
|
|
"dist/cjs/numbers.js",
|
|
"dist/cjs/index.js",
|
|
"dist/cjs/uuid.js",
|
|
"dist/cjs/counter.js",
|
|
"dist/cjs/low_level.js",
|
|
"dist/cjs/text.js",
|
|
"dist/cjs/proxies.js",
|
|
"dist/mjs/constants.js",
|
|
"dist/mjs/types.js",
|
|
"dist/mjs/numbers.js",
|
|
"dist/mjs/index.js",
|
|
"dist/mjs/uuid.js",
|
|
"dist/mjs/counter.js",
|
|
"dist/mjs/low_level.js",
|
|
"dist/mjs/text.js",
|
|
"dist/mjs/proxies.js"
|
|
],
|
|
"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 --emitDeclarationOnly",
|
|
"test": "ts-mocha test/*.ts",
|
|
"watch-docs": "typedoc src/index.ts --watch --readme typedoc-readme.md"
|
|
},
|
|
"devDependencies": {
|
|
"@types/expect": "^24.3.0",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/uuid": "^8.3.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.25.0",
|
|
"@typescript-eslint/parser": "^5.25.0",
|
|
"eslint": "^8.15.0",
|
|
"fast-sha256": "^1.3.0",
|
|
"mocha": "^10.0.0",
|
|
"pako": "^2.0.4",
|
|
"ts-mocha": "^10.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typedoc": "^0.23.16",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"dependencies": {
|
|
"@automerge/automerge-wasm": "0.1.19",
|
|
"uuid": "^8.3"
|
|
}
|
|
}
|