-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 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
{
"name": "pocket-editor",
"description": "Blazingly fast block style wysiwyg editor that returns markdown",
"version": "2.4.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Victor Azevedo (https://victr.me)",
"license": "MIT",
"type": "module",
"repository": {
"url": "git+ssh://[email protected]/victrme/pocket-editor.git"
},
"keywords": [
"wysiwyg",
"contenteditable",
"text editor",
"rich text"
],
"scripts": {
"build": " node ./build.config.js && tsc",
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"dev": "pnpm --filter example dev",
"preview": "pnpm --filter example preview"
},
"devDependencies": {
"@playwright/test": "^1.47.1",
"esbuild": "^0.23.1"
},
"files": [
"./dist/**/*.js",
"./dist/index.d.ts",
"./dist/style.css"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./style.css": "./dist/style.css"
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"printWidth": 112,
"semi": false
},
"engines": {
"pnpm": ">=7"
}
}