-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
62
{
"name": "excalidraw",
"main": "./lib/excalidraw.js",
"version": "2.3.1",
"description": "Allows Inkdrop to embed Excalidraw contents to a note. ",
"keywords": [
"inkdrop"
],
"repository": "https://github.com/azu/inkdrop-excalidraw",
"license": "MIT",
"engines": {
"inkdrop": "^4.x"
},
"files": [
"lib",
"menus",
"keymaps",
"docs",
"resources"
],
"scripts": {
"clean": "rm -rf lib/",
"build": "babel src/ -d lib/",
"watch": "babel src/ -d lib/ --watch",
"dev": "babel src/ -s -d lib/ --watch",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"release:patch": "npm run clean && npm run build && ipm publish patch",
"release:minor": "npm run clean && npm run build && ipm publish minor",
"release:major": "npm run clean && npm run build && ipm publish major",
"prepare": "cp -r node_modules/@excalidraw/excalidraw/dist/ resources/"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.10.0",
"dayjs": "^1.10.4",
"prop-types": "^15.7.2",
"react-full-screen": "^1.0.2",
"react-icons": "^4.2.0",
"use-debounce": "^6.0.1",
"use-on-visible": "^1.0.8"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/compat-data": "^7.14.0",
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@types/codemirror": "^5.60.0",
"babel-eslint": "^10.1.0",
"electron": "^12.0.7",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"prettier": "^2.2.1"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
}
}