generated from codex-team/typescript-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.26 KB
/
package.json
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
{
"name": "@editorjs/utils",
"private": true,
"workspaces": [
"packages/caret",
"packages/dom",
"packages/helpers",
"packages/keyboard"
],
"version": "1.0.0",
"description": "Useful utils for working with Editor.js",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/editor-js/utils.git"
},
"author": "CodeX Team <all@codex.so>",
"license": "MIT",
"scripts": {
"build": "yarn build:helpers && yarn build:dom && yarn build:caret && yarn build:keyboard && tsc",
"build:helpers": "cd packages/helpers && yarn build",
"build:dom": "cd packages/dom && yarn build",
"build:caret": "cd packages/caret && yarn build",
"build:keyboard": "cd packages/keyboard && yarn build",
"test": "vitest run",
"lint": "eslint",
"lint:fix": "yarn lint --fix",
"generate-docs": "ts-node scripts/generateReadme.ts",
"publish:ci": "ts-node scripts/publish.ts"
},
"devDependencies": {
"@types/fs-extra": "^11",
"@types/node": "^20.10.7",
"eslint": "^9.0.0",
"eslint-config-codex": "^2.0.0",
"fs-extra": "^11.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0",
"vitest": "1.4.0"
},
"packageManager": "yarn@4.4.0"
}