-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "obsidian-defaults-plugin",
"version": "0.0.0",
"description": "A plugin and settings repository for Obsidian vaults",
"main": "main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && cross-env NODE_ENV=production node esbuild.config.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest"
},
"keywords": [],
"author": "iSplasher",
"repository": {
"type": "git",
"url": "https://github.com/iSplasher/obsidian-defaults-plugin"
},
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@types/jest": "^29.5.5",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"builtin-modules": "^3.3.0",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"esbuild": "^0.18.11",
"esbuild-sass-plugin": "^2.10.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eventemitter3": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.1",
"obsidian": "latest",
"ts-custom-error": "^3.3.1",
"ts-jest": "^29.1.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
}
}