-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 KB
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
{
"name": "@inkdropapp/ipm-cli",
"version": "1.0.5",
"description": "The CLI tool for managing Inkdrop plugins",
"type": "module",
"bin": {
"ipm": "./bin/cli.js"
},
"main": "lib/index.js",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "node --env-file=.env ./bin/cli.js",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit"
},
"keywords": [
"Inkdrop"
],
"author": "Takuya Matsuyama <t@inkdrop.app>",
"homepage": "https://github.com/inkdropapp/ipm-cli#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/inkdropapp/ipm-cli/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/inkdropapp/ipm-cli.git"
},
"dependencies": {
"@inkdropapp/ipm": "^1.0.6",
"@inkdropapp/logger": "^4.0.0",
"@napi-rs/keyring": "^1.2.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"open": "^11.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/node": "^25.4.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"engines": {
"node": ">=24.0.0"
},
"files": [
"bin",
"lib"
]
}