-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@ageesea/text-toolkit",
"version": "0.1.2",
"description": "A collection of plugins for EditorJS",
"jsdelivr": "dist/text-toolkit.umd.cjs",
"unpkg": "dist/text-toolkit.umd.cjs",
"type": "module",
"files": [
"dist"
],
"main": "./dist/text-toolkit.umd.cjs",
"module": "./dist/text-toolkit.js",
"exports": {
".": {
"import": "./dist/text-toolkit.js",
"require": "./dist/text-toolkit.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "rimraf dist && tsc && vite build",
"build:action": "vite build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"update:package": "json -I -f package.json -o json-tab"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anthonygacis/text-toolkit.git"
},
"keywords": [
"editor-js",
"paragraph",
"text",
"toolkit",
"tool",
"plugin"
],
"author": "Anthony Gacis",
"license": "MIT",
"bugs": {
"url": "https://github.com/anthonygacis/text-toolkit/issues"
},
"homepage": "https://github.com/anthonygacis/text-toolkit",
"devDependencies": {
"@editorjs/editorjs": "^2.27.0",
"jest": "^27.3.1",
"json": "^11.0.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitepress": "^1.0.0-alpha.65",
"vitest": "^0.25.4"
},
"dependencies": {
"@codexteam/icons": "^0.3.0"
}
}