forked from carlonicora/obsidian-rpg-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "rpg-manager",
"version": "3.3.0",
"description": "A plugin to manage your Tabletop Role Playing Game campaigns for Obsidian.",
"main": "src/main.ts",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "nyc ./node_modules/.bin/_mocha 'test/**/*.test.ts'"
},
"keywords": [],
"author": "Carlo Nicora",
"license": "MIT",
"devDependencies": {
"@types/luxon": "^3.0.1",
"@types/node": "^16.11.6",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"madge": "^5.0.1",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@testdeck/mocha": "^0.3.2",
"chai": "^4.3.7",
"flatpickr": "^4.6.13",
"luxon": "^3.0.4",
"mocha": "^10.1.0",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"ts-md5": "^1.3.1",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1"
}
}