-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
92 lines (92 loc) · 3.54 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "obsidian-typings",
"version": "2.7.0",
"description": "Extended type definitions for the Obsidian API (https://obsidian.md)",
"main": "",
"module": "",
"types": "./dist/types.d.ts",
"exports": {
".": {
"types": "./dist/types.d.ts"
},
"./implementations": {
"types": "./dist/implementations.d.ts",
"default": "./dist/implementations.cjs"
}
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Fevol/obsidian-typings.git"
},
"keywords": [
"obsdmd",
"obsidian",
"typings",
"API"
],
"author": {
"name": "Fevol",
"url": "https://github.com/fevol",
"email": "[email protected]"
},
"contributors": [
{
"name": "Michael Naumov",
"url": "https://github.com/mnaoumov",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Fevol/obsidian-typings/issues"
},
"homepage": "https://github.com/Fevol/obsidian-typings#readme",
"peerDependencies": {
"@capacitor/core": "^6.1.2",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@types/node": ">=14.0.0",
"@types/turndown": "^5.0.5",
"electron": ">=1.6.10",
"i18next": "^23.15.1",
"obsidian": "^1.7.2"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.47.9",
"@tsconfig/strictest": "^2.0.5",
"@types/codemirror": "^5.60.15",
"@types/dompurify": "^3.0.5",
"@types/node": "^18.17.0 || >=20.1.0",
"@types/pixi.js": "^4.8.9",
"builtin-modules": "^4.0.0",
"cspell": "^8.14.2",
"dompurify": "^3.1.6",
"dprint": "^0.47.2",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.23.1",
"moment": "^2.30.1",
"npm-run-all": "^4.1.5",
"ts-morph": "^23.0.0"
},
"scripts": {
"build": "npm-run-all build:clean build:validate build:generate-index build:bundle-types build:fix-bundle-types build:implementations build:implementations:generate-types build:implementations:bundle-types build:style-mod build:extract-api",
"build:clean": "bun run scripts/build-clean.ts",
"build:validate": "tsc --build --force",
"build:generate-index": "bun run scripts/build-generate-index.ts",
"build:bundle-types": "dts-bundle-generator -o ./dist/types.d.ts ./src/index.d.ts --inline-declare-global --inline-declare-externals",
"build:fix-bundle-types": "bun run scripts/build-fix-bundle-types.ts",
"build:implementations": "bun run scripts/build-implementations.ts",
"build:implementations:generate-types": "tsc --project ./tsconfig.implementations.json",
"build:implementations:bundle-types": "dts-bundle-generator -o ./dist/implementations.d.ts ./src/obsidian/implementations/index.ts",
"build:style-mod": "bun run scripts/build-style-mod.ts",
"build:tools": "tsc --project ./tools/tsconfig.json",
"build:extract-api": "api-extractor run --local",
"format": "bun run scripts/sort-interfaces.ts ./src/ && bun dprint fmt",
"release-beta": "bun run scripts/bump-version.ts beta",
"release-patch": "bun run scripts/bump-version.ts patch",
"release-minor": "bun run scripts/bump-version.ts minor",
"release-major": "bun run scripts/bump-version.ts major",
"spellcheck": "cspell . --no-progress"
}
}