-
-
Notifications
You must be signed in to change notification settings - Fork 372
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.1 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.1 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
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
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@silverbulletmd/silverbullet",
"version": "2.5.3",
"type": "module",
"description": "A self-hosted, web-based note taking app",
"publishConfig": {
"access": "public"
},
"exports": {
"./syscall": "./plug-api/syscall.ts",
"./syscalls": "./plug-api/syscalls.ts",
"./constants": "./plug-api/constants.ts",
"./lib/json": "./plug-api/lib/json.ts",
"./lib/tree": "./plug-api/lib/tree.ts",
"./lib/ref": "./plug-api/lib/ref.ts",
"./lib/resolve": "./plug-api/lib/resolve.ts",
"./lib/dates": "./plug-api/lib/dates.ts",
"./lib/async": "./plug-api/lib/async.ts",
"./lib/crypto": "./plug-api/lib/crypto.ts",
"./lib/limited_map": "./plug-api/lib/limited_map.ts",
"./lib/tags": "./plug-api/lib/tags.ts",
"./lib/transclusion": "./plug-api/lib/transclusion.ts",
"./lib/native_fetch": "./plug-api/lib/native_fetch.ts",
"./lib/query_expression": "./plug-api/lib/query_expression.ts",
"./type/client": "./plug-api/types/client.ts",
"./type/config": "./plug-api/types/config.ts",
"./type/manifest": "./plug-api/types/manifest.ts",
"./type/namespace": "./plug-api/types/namespace.ts",
"./type/datastore": "./plug-api/types/datastore.ts",
"./type/event": "./plug-api/types/event.ts",
"./type/index": "./plug-api/types/index.ts"
},
"bin": {
"plug-compile": "dist/plug-compile.js"
},
"files": [
"plug-api/**/*.ts",
"!plug-api/**/*.test.ts",
"!plug-api/**/*.bench.ts",
"client/plugos/**/*.ts",
"!client/plugos/**/*.test.ts",
"client/asset_bundle/bundle.ts",
"client/data/kv_primitives.ts",
"client/data/datastore.ts",
"client/space_lua/**/*.ts",
"!client/space_lua/**/*.test.ts",
"!client/space_lua/**/*.bench.ts",
"client/markdown_parser/constants.ts",
"plugs/builtin_plugs.ts",
"dist/plug-compile.js"
],
"scripts": {
"build": "npm run build:plugs && npm run build:client",
"build:plugs": "tsx build/build_plugs.ts",
"build:client": "tsx build/build_client.ts",
"build:plug-compile": "tsx build/build_plug_compile.ts",
"prepublishOnly": "npm run build:plug-compile",
"test": "vitest run",
"check": "tsc --noEmit",
"lint": "biome lint .",
"fmt": "biome format --write .",
"fmt:check": "biome format .",
"bench": "vitest bench",
"test:e2e": "npx playwright test",
"test:e2e:headed": "npx playwright test --headed"
},
"dependencies": {
"@cfworker/json-schema": "^4.1.1",
"@codemirror/autocomplete": "6.20.0",
"@codemirror/commands": "6.10.1",
"@codemirror/lang-css": "6.3.1",
"@codemirror/lang-html": "6.4.11",
"@codemirror/lang-javascript": "6.2.4",
"@codemirror/lang-markdown": "6.5.0",
"@codemirror/language": "6.12.1",
"@codemirror/legacy-modes": "6.5.2",
"@codemirror/lint": "6.9.2",
"@codemirror/search": "6.6.0",
"@codemirror/state": "6.5.4",
"@codemirror/view": "6.39.11",
"@joplin/turndown-plugin-gfm": "1.0.64",
"@lezer/common": "1.5.0",
"@lezer/css": "1.3.0",
"@lezer/highlight": "1.2.3",
"@lezer/html": "1.3.13",
"@lezer/javascript": "1.5.4",
"@lezer/lr": "1.4.7",
"@lezer/markdown": "1.6.3",
"@msgpack/msgpack": "3.1.3",
"@replit/codemirror-lang-nix": "6.0.1",
"@replit/codemirror-vim": "6.3.0",
"commander": "^14.0.3",
"crelt": "1.0.6",
"esbuild": "^0.27.3",
"fast-diff": "1.3.0",
"fast-glob": "^3.3.3",
"fuse.js": "7.1.0",
"gitignore-parser": "0.0.2",
"idb": "8.0.3",
"js-yaml": "^4.1.1",
"mime": "4.1.0",
"preact": "10.28.2",
"preact-feather": "4.2.1",
"react-icons": "5.5.0",
"sass": "^1.97.3",
"style-mod": "4.1.2",
"turndown": "7.2.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@playwright/test": "^1.58.2",
"@preact/preset-vite": "^2.10.3",
"@types/gitignore-parser": "^0.0.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/turndown": "^5.0.6",
"fake-indexeddb": "6.0.1",
"tsx": "^4.19.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=24.13.0",
"npm": ">=10.0.0"
}
}