-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "syrinscape-player-control",
"version": "1.8.1",
"description": "Control Syrinscape Online Player from inside of notes.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"lint": "eslint '**/*.ts'",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Stephen Cooper",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/node": "^20.14.11",
"@types/papaparse": "^5.3.14",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"builtin-modules": "4.0.0",
"esbuild": "0.23.0",
"eslint": "^8.56.0",
"globals": "^15.8.0",
"obsidian": "latest",
"tslib": "2.6.3",
"typescript": "5.5.3",
"typescript-eslint": "^7.17.0"
},
"dependencies": {
"@codemirror/language": "^6.10.2",
"codemirror": "^6.0.1",
"papaparse": "^5.4.1"
}
}