-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
executable file
·61 lines (61 loc) · 1.57 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
60
61
{
"name": "react-simplemde-editor",
"homepage": "https://react-simplemde-edtior.netlify.app/",
"repository": "https://github.com/RIP21/react-simplemde-editor",
"version": "5.2.0",
"author": "Andrii Los",
"contributors": [
{
"name": "Ben Lodge",
"url": "https://github.com/benrlodge",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "dist/SimpleMdeReact.js",
"module": "dist/SimpleMdeReact.mjs",
"typings": "dist/SimpleMdeReact.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build:lib": "tsup ./src/SimpleMdeReact.tsx",
"prepare": "pnpm build:lib",
"demo": "vite",
"build:demo": "vite build",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:debug": "playwright test --debug",
"tsc": "tsc"
},
"dependencies": {
"@types/codemirror": "~5.60.5"
},
"peerDependencies": {
"easymde": ">= 2.0.0 < 3.0.0",
"react": ">=16.8.2",
"react-dom": ">=16.8.2"
},
"devDependencies": {
"@playwright-testing-library/test": "~4.5.0",
"@playwright/test": "~1.26.1",
"@testing-library/react": "~13.4.0",
"@testing-library/user-event": "~14.4.3",
"@types/codemirror": "~5.60.5",
"@types/node": "~16.11.62",
"@types/react": "~18.0.21",
"@types/react-dom": "~18.0.6",
"easymde": "~2.18.0",
"happy-dom": "~6.0.4",
"jsdom": "~20.0.0",
"prettier": "~2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"tsup": "~6.2.3",
"typescript": "~4.8.4",
"vite": "~3.1.4",
"vitest": "0.23.4",
"vitest-dom": "~0.0.4"
}
}