-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 1.7 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@tommywalkie/excalidraw-cli",
"version": "0.5.0",
"description": "Experimental Excalidraw CLI tool",
"author": "Tom Bazarnik <tommywalkie@gmail.com>",
"bin": {
"excalidraw-cli": "./bin/run"
},
"bugs": {
"url": "https://github.com/tommywalkie/excalidraw-cli/issues"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3.2.0",
"canvas": "^2.6.1",
"chalk": "^4.0.0",
"cpy-cli": "^3.1.1",
"fs-extra": "^9.0.1",
"fs-readdir-recursive": "^1.1.0",
"listr": "^0.14.3",
"listr2": "^3.2.3",
"roughjs": "^4.3.1",
"rxjs": "^6.5.5"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.15",
"globby": "^11.0.1",
"jest": "^27.0.4",
"np": "^7.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/tommywalkie/excalidraw-cli#readme",
"keywords": [
"excalidraw",
"cli",
"canvas",
"png"
],
"license": "MIT",
"main": "./lib/index.js",
"oclif": {
"bin": "excalidraw-cli",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tommywalkie/excalidraw-cli.git"
},
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"prepack": "rimraf lib && tsc -b && cpy ./src/fonts ./lib/fonts",
"test": "npm run prepack && jest",
"excalidraw-cli": "node ./bin/run"
},
"types": "lib/index.d.ts",
"jest": {
"testRegex": ".spec.js$"
}
}