-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.52 KB
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
{
"name": "miro-export",
"version": "1.3.2",
"author": "jolle <[email protected]>",
"license": "MIT",
"type": "module",
"description": "Export Miro boards and/or frames as SVG or JSON",
"keywords": [
"miro",
"svg",
"export"
],
"repository": {
"type": "git",
"url": "https://github.com/jolle/miro-export.git"
},
"bugs": {
"url": "https://github.com/jolle/miro-export/issues"
},
"homepage": "https://github.com/jolle/miro-export",
"main": "./build/index.js",
"bin": {
"miro-export": "./build/cli.js"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@types/node": "^26.0.0",
"ajv": "^8.17.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"prettier": "^3.7.4",
"ts-json-schema-generator": "^2.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
},
"dependencies": {
"@commander-js/extra-typings": "^15.0.0",
"commander": "^15.0.0",
"puppeteer": "^24.34.0"
},
"scripts": {
"lint": "eslint src/*.ts && prettier -c src/*.ts",
"build": "tsc && echo \"#!/usr/bin/env node\n$(cat ./build/cli.js)\" > ./build/cli.js",
"test": "npm run test:board-object-types && npm run test:api",
"test:board-object-types": "tsx tests/board-object-types.ts",
"test:api": "tsx tests/api.test.ts"
},
"engines": {
"node": ">=22.0.0"
}
}