-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "typeengine",
"version": "1.0.0",
"description": "Typeengine is a blazing-fast, minimal, and extensible rich text core for building the editors of tomorrow.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "node esbuild.config.js",
"dev": "vitest watch",
"test": "vitest run",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"format": "biome format .",
"lint": "biome lint .",
"lint:fix": "biome check --write .",
"changeset": "changeset",
"release": "changeset publish",
"prepublishOnly": "pnpm run build && pnpm test && pnpm lint",
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm lint:fix",
"docs:api": "npx typedoc --options typedoc.json"
},
"keywords": [
"rich-text",
"editor",
"immutable",
"typescript",
"core",
"minimal",
"plugin-system"
],
"author": {
"name": "Edmo Lima",
"email": "soedmolima@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/edmolima/typeengine.git"
},
"bugs": {
"url": "https://github.com/edmolima/typeengine/issues"
},
"homepage": "https://github.com/edmolima/typeengine#readme",
"license": "MIT",
"engines": {
"node": ">=20.11.1"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@types/node": "^24.0.14",
"@vitest/coverage-v8": "3.2.4",
"biome": "^0.3.3",
"esbuild": "^0.25.6",
"fast-check": "^4.2.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}