-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
85 lines (85 loc) · 2.97 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
{
"name": "@aetherinox/obsidian-dataview-snippets",
"version": "1.4.3",
"description": "A collection of Obsidian.md scripts to be used in combination with the dataview plugin.",
"homepage": "https://github.com/Aetherinox/obsidian-dataview-snippets",
"author": "Aetherinox <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Aetherinox",
"email": "[email protected]",
"url": "https://github.com/Aetherinox"
},
{
"name": "EuropaServ",
"email": "[email protected]",
"url": "https://github.com/EuropaServ"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Aetherinox/obsidian-dataview-snippets.git"
},
"bugs": {
"url": "https://github.com/Aetherinox/obsidian-dataview-snippets/issues"
},
"build": {
"appId": "com.obsidian.dataview.snippets.id"
},
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/aetherinox"
}
],
"keywords": [
"obsidian",
"dataview",
"folder_notes",
"snippets",
"scripts",
"notes"
],
"scripts": {
"pretest": "npm run lint",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"pretty": "prettier . --check",
"pretty:fix": "prettier . --write",
"pretty:ignore": "prettier . --write --ignore-unknown",
"obs": "node obs.js",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"root": "node obs.js",
"root:generate": "node obs.js generate",
"env:obs": "npx --quiet env-cmd --no-override node obs.js",
"env:uuid": "npx --quiet env-cmd --no-override node obs.js uuid",
"env:guid": "npx --quiet env-cmd --no-override node obs.js guid",
"env:version": "node -p require('./package.json').version;"
},
"devDependencies": {
"eslint-plugin-prettier": "^5.2.1",
"typescript-eslint": "^7.14.0",
"@typescript-eslint/parser": "^7.16.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@stylistic/eslint-plugin-js": "^2.3.0",
"@stylistic/eslint-plugin-ts": "^2.3.0",
"@stylistic/eslint-plugin-plus": "^2.3.0",
"prettier": "^3.2.5",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"rollup-plugin-license": "^3.5.2",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"obsidian": "^1.7.2",
"rollup": "^4.24.0",
"semver": "^7.6.3",
"uuid": "^10.0.0",
"all-contributors-cli": "^6.26.1"
}
}