This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.11 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
{
"name": "imbricate",
"packageManager": "[email protected]",
"version": "1.21.0",
"description": "Yes to accountable notes, no to external hosting. Free, for everyone.",
"bin": {
"i7e": "cli",
"imbricate": "cli"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"clean": "rm -rf app",
"build": "tsc --project typescript/tsconfig.build.json",
"license": "sdb license",
"replace-version": "ts-node --project typescript/tsconfig.script.json scripts/replace-version.ts",
"release": "yarn lint && yarn test && yarn license && yarn build && yarn replace-version",
"chmod-link": "chmod +x app/i7e-bin && chmod +x app/imbricate-bin",
"link": "yarn release && cd app && npm link && chmod +x i7e-bin && chmod +x imbricate-bin",
"relink": "yarn build && yarn replace-version && yarn chmod-link",
"publish-dry-run": "yarn release && sdb --only publish-dry-run",
"publish": "yarn release && sdb --only publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Imbricate/Imbricate.git"
},
"keywords": [
"imbricate",
"note",
"CLI"
],
"author": "WMXPY",
"license": "MIT",
"bugs": {
"url": "https://github.com/Imbricate/Imbricate/issues"
},
"homepage": "https://imbricate.io",
"dependencies": {
"@imbricate/core": "1.31.0",
"@imbricate/local-fundamental": "1.17.0",
"@imbricate/markdown-render": "1.2.0",
"@imbricate/origin-file-system": "file:../Imbricate-Origin-File-System",
"@imbricate/origin-mongo": "1.5.0",
"@sudoo/io": "^1.8.0",
"@sudoo/uuid": "^1.1.0",
"axios": "^1.7.3",
"commander": "^12.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@sudoo/marked": "^3.21.4",
"@types/jest": "^29.5.13",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^7.16.1",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}