-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
79 lines (79 loc) · 3.12 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "iron-vault",
"version": "1.87.0",
"description": "",
"main": "main.js",
"type": "module",
"engines": {
"node": ">=16",
"pnpm": ">=9"
},
"private": true,
"scripts": {
"test": "jest",
"build": "tsc --noEmit && node esbuild.config.js production",
"dev:build": "tsc --noEmit && node esbuild.config.js nowatch",
"compile-data": "yq -ojson data/starforged.supplement.yaml > data/starforged.supplement.json && yq -ojson data/sundered-isles.supplement.yaml > data/sundered-isles.supplement.json",
"dev": "node esbuild.config.js",
"bump": "node ./scripts/update_manifest.js release ${npm_config_tag:?} && npm version --no-git-tag-version ${npm_config_tag} && git commit -a -m \"bumping manifest version to ${npm_config_tag}\" && git tag -a ${npm_config_tag} -m ${npm_config_tag} && git push --follow-tags",
"bump:beta": "node ./scripts/update_manifest.js beta ${npm_config_tag:?} && npm version --no-git-tag-version ${npm_config_tag} && git add manifest-beta.json && git commit -a -m \"bumping manifest-beta version to ${npm_config_tag}\" && git tag -a ${npm_config_tag} -m ${npm_config_tag} && git push --follow-tags",
"latestrev": "git tag -l --sort -creatordate '[0-9]*' | head -n 1",
"lint": "pnpm run '/^lint:.*/'",
"lint:js": "eslint src",
"copy:target": "pnpm dev:build && targetdir=\"$(<.targetdir)\" && cp -v main.js manifest.json styles.css \"${targetdir:?}/iron-vault/\""
},
"keywords": [],
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@3d-dice/dice-box": "^1.1.4",
"@3d-dice/theme-smooth": "^0.2.1",
"@codemirror/language": "^6.10.1",
"@codemirror/view": "^6.26.3",
"@datasworn/core": "0.1.0-0",
"@datasworn/ironsworn-classic": "0.1.0-0",
"@datasworn/ironsworn-classic-delve": "0.1.0-0",
"@datasworn/starforged": "0.1.0-0",
"@datasworn/sundered-isles": "0.1.0-0",
"@jgoz/esbuild-plugin-typecheck": "^4.0.0",
"@nrsk/sigma": "^3.8.0",
"@swc/core": "^1.5.7",
"@swc/jest": "^0.2.36",
"@types/electron": "npm:@ophidian/electron-types@^24.3.1",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/lodash.ismatch": "^4.4.9",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^20.12.12",
"@types/obsidian-typings": "npm:obsidian-typings@^1.1.6",
"@types/semver": "^7.5.8",
"@types/sortablejs": "^1.15.8",
"ajv": "^8.16.0",
"builtin-modules": "^3.3.0",
"emittery": "^1.0.3",
"esbuild": "^0.21.3",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"handlebars": "^4.7.8",
"immer": "^10.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"kdljs": "^0.2.0",
"lit-html": "^3.1.3",
"lodash.ismatch": "^4.4.0",
"lodash.merge": "^4.6.2",
"loglevel": "^1.9.1",
"minisearch": "^7.1.0",
"obsidian": "^1.5.7",
"prettier": "^3.2.5",
"semver": "^7.6.2",
"sortablejs": "^1.15.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0",
"zod": "^3.23.8"
}
}