-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"type": "module",
"name": "inkdrop-version-history",
"version": "5.9.2",
"description": "The version history of Inkdrop for desktop",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/inkdropapp/version-history.git"
},
"scripts": {
"create-release": "node scripts/create-release.mjs",
"build": "npm run build:readme && npm run build:meta && npm run build:changelog",
"build:readme": "node scripts/readme.mjs",
"build:meta": "node scripts/genmeta.mjs",
"build:changelog": "node scripts/changelog.mjs",
"release": "env $(cat .env | xargs) node scripts/release.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"keywords": [
"inkdrop"
],
"author": "Takuya Matsuyama <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.1"
},
"dependencies": {
"dateformat": "^3.0.3",
"js-yaml": "^4.1.0",
"semver": "^7.5.4"
}
}