-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
115 lines (115 loc) · 3.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "gistr",
"version": "1.7.0",
"description": "Integrate Opengist and Github gists into your notes, allowing you to create, update, and share between your notes and gist services",
"author": "Aetherinox",
"license": "MIT",
"main": "main.js",
"build": {
"appId": "com.gistr.id"
},
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/aetherinox"
}
],
"bugs": {
"url": "https://github.com/Aetherinox/obsidian-gistr/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Aetherinox/obsidian-gistr.git"
},
"contributors": [
{
"name": "Aetherinox",
"email": "[email protected]",
"url": "https://github.com/Aetherinox"
},
{
"name": "EuropaServ",
"email": "[email protected]",
"url": "https://github.com/EuropaServ"
}
],
"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",
"start": "rollup --watch --config rollup.config.mjs --environment BUILD,TEST",
"dev": "rollup --watch --config rollup.config.mjs --environment BUILD:dev",
"build": "rollup --config rollup.config.mjs --environment BUILD:production",
"release": "rollup --config rollup.config.mjs --environment BUILD,MINIFY,TEST",
"test": "rollup --config rollup.config.mjs --environment TEST",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"gistr": "node gistr.js",
"generate": "node gistr.js generate",
"env-gistr": "npx --quiet env-cmd --no-override node gistr.js",
"env-uuid": "npx --quiet env-cmd --no-override node gistr.js uuid",
"env-guid": "npx --quiet env-cmd --no-override node gistr.js guid",
"env-version": "node -p require('./package.json').version;"
},
"keywords": [
"markdown",
"obsidian.md",
"obsidian",
"gist",
"gistr",
"opengist",
"github"
],
"devDependencies": {
"@aetherinox/noxenv": "^1.0.0",
"@codemirror/view": "^6.26.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chrome": "^0.0.268",
"@types/node": "^20.14.10",
"@types/semver": "^7.5.8",
"@types/uuid": "^9.0.8",
"typescript-eslint": "^7.14.0",
"@typescript-eslint/parser": "^7.16.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"@stylistic/eslint-plugin-js": "^2.3.0",
"@stylistic/eslint-plugin-ts": "^2.3.0",
"@stylistic/eslint-plugin-plus": "^2.3.0",
"electron": "^31.1.0",
"obsidian": "^1.0.0",
"rollup": "^4.18.0",
"rollup-plugin-license": "^3.3.1",
"simple-git": "^3.24.0",
"tslib": "^2.2.0",
"typescript": "^5.4.3",
"all-contributors-cli": "^6.26.1",
"prettier": "^3.2.5"
},
"dependencies": {
"@aetherinox/noxkit": "https://github.com/Aetherinox/noxkit",
"@octokit/rest": "^20.1.0",
"@simonwep/pickr": "1.9.0",
"colortranslator": "^4.1.0",
"front-matter": "^4.0.2",
"semver": "^7.6.0",
"uuid": "^9.0.1",
"yaml": "^2.4.5"
},
"files": [
"tests/",
"LICENSE.md",
"README.md",
"main.js",
"styles.css",
"manifest.json"
]
}