-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
{
"name": "mdeditor",
"version": "0.0.1",
"description": "Simple markdown editor",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"type": "module",
"types": "./dist/index.d.ts",
"scripts": {
"dev-start": "http-server",
"build": "npm run format && npx rollup -c",
"format": "prettier --write .",
"publish": "npm publish",
"save-all": "npm run format && git add . && git commit -m \"autosave\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbcguard/mdEditor.git"
},
"keywords": [
"markdown",
"editor",
"mark",
"down"
],
"author": "sbcguard",
"license": "MIT",
"bugs": {
"url": "https://github.com/sbcguard/mdEditor/issues"
},
"homepage": "https://github.com/sbcguard/mdEditor#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-svg": "^16.1.33",
"rollup": "^4.13.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.4.2"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 100,
"semi": true,
"singleQuote": true
}
}