-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "obsidian-tab-shifter",
"version": "2.0.3",
"description": "Enables shifting tabs between different tab splits and some other basic IDE tab functionalities",
"main": "main.js",
"scripts": {
"prebuild_dev": "NODE_ENV=development ts-node scripts/generateStaticEnv.mjs",
"prebuild_prod": "NODE_ENV=production ts-node scripts/generateStaticEnv.mjs",
"_prod": "yarn prebuild_prod && node esbuild.config.mjs production",
"prod_all": "yarn lint && tsc -noEmit -skipLibCheck && yarn _prod",
"dev": "yarn prebuild_dev && node esbuild.config.mjs",
"dev_copy_files_for_hotload": "node scripts/copyFiles.js",
"watch_dev": "nodemon",
"lint": "eslint src/*.ts",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Joshua Rozner",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"dotenv": "^16.4.5",
"esbuild": "0.17.3",
"eslint": "^8.57.0",
"nodemon": "^3.1.0",
"obsidian": "latest",
"ts-node": "^10.9.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"nodemonConfig": {
"watch": [
"src/",
".env",
"esbuild.config.mjs",
"package.json"
],
"ext": "ts,js",
"ignore": [
"src/generated/*",
"src/**/*.test.ts"
],
"exec": "yarn dev && yarn dev_copy_files_for_hotload"
}
}