-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.89 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
{
"name": "obsidian-community-lib",
"version": "2.0.1",
"description": "Commonly used functions in Obsidian plugins",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"compile": "tsc && git commit -am \"chore: :package: Compile\"",
"docs": "npx typedoc ./src/utils.ts && git commit -am \"chore: :memo: Update docs site\"",
"all": "npm run test && npm run compile && npm run docs && npm run release",
"release": "standard-version"
},
"standard-version": {
"t": "",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Documentation"
}
],
"header": "## Obsidian Community Lib Changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/obsidian-community/obsidian-community-lib.git"
},
"keywords": [
"obsidianmd"
],
"author": "SkepticMystic",
"license": "ISC",
"bugs": {
"url": "https://github.com/obsidian-community/obsidian-community-lib/issues"
},
"homepage": "https://github.com/obsidian-community/obsidian-community-lib#readme",
"devDependencies": {
"@types/events": "^3.0.0",
"@types/feather-icons": "^4.29.1",
"@types/jest": "^29.5.4",
"events": "^3.3.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"standard-version": "^9.3.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"typedoc": "^0.25.0",
"typescript": "^5.2.2"
},
"dependencies": {
"feather-icons": "^4.28.0",
"obsidian": "^1.4.4"
}
}