-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 907 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 907 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
33
34
35
36
37
38
{
"name": "note",
"version": "0.5.1-beta.0",
"description": "Portable App Documents: preview like files, open like pages, run like apps.",
"type": "module",
"bin": {
"note": "note.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/effect-native/pad.git"
},
"homepage": "https://github.com/effect-native/pad#readme",
"bugs": {
"url": "https://github.com/effect-native/pad/issues"
},
"files": [
"note.tsx",
"pad.css",
"pad.mjs",
"README.md",
"examples"
],
"scripts": {
"check": "bun -e \"const result=await Bun.build({entrypoints:['./note.tsx'],target:'bun',write:false});if(!result.success)process.exit(1)\" && node --check pad.mjs"
},
"engines": {
"bun": ">=1.3.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"license": "MIT",
"dependencies": {
"qrcode": "^1.5.4"
}
}