atproto blogging
1{
2 "name": "@weaver.sh/editor-core",
3 "version": "0.1.0",
4 "description": "Embeddable markdown editor for Weaver.sh",
5 "type": "module",
6 "main": "./dist/index.js",
7 "module": "./dist/index.js",
8 "types": "./dist/index.d.ts",
9 "exports": {
10 ".": {
11 "import": "./dist/index.js",
12 "types": "./dist/index.d.ts"
13 }
14 },
15 "files": [
16 "dist",
17 "pkg"
18 ],
19 "scripts": {
20 "build": "tsc",
21 "build:wasm": "cd .. && ./build.sh",
22 "build:all": "npm run build:wasm && npm run build",
23 "check": "tsc --noEmit"
24 },
25 "dependencies": {},
26 "devDependencies": {
27 "typescript": "^5.3.0"
28 },
29 "repository": {
30 "type": "git",
31 "url": "https://tangled.org/nonbinary.computer/weaver"
32 },
33 "license": "MIT",
34 "keywords": [
35 "markdown",
36 "editor",
37 "atproto",
38 "weaver"
39 ]
40}