-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 881 Bytes
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
{
"name": "typora-plugin-lite",
"version": "0.1.0",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/lr00rl/typora-plugin-lite.git"
},
"bugs": {
"url": "https://github.com/lr00rl/typora-plugin-lite/issues"
},
"homepage": "https://github.com/lr00rl/typora-plugin-lite#readme",
"scripts": {
"build": "tsx scripts/build.ts",
"build:watch": "tsx scripts/build.ts --watch",
"clean": "rm -rf dist",
"session:archive": "tsx tools/session-archive/src/cli.ts",
"test": "node --import tsx --test tests/*.test.ts",
"typecheck": "tsc --noEmit"
},
"bin": {
"session-archive": "dist/tools/session-archive/index.mjs"
},
"devDependencies": {
"@types/node": "^25.5.0",
"esbuild": "^0.25.0",
"happy-dom": "^20.9.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}