-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.63 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
{
"name": "@bounded-systems/scout",
"version": "0.1.2",
"description": "Content-addressed surface reads (file/grep/files) with anchored-chain provenance",
"bounded": {
"tagline": "Content-addressed surface reads (file/grep/files) with anchored-chain provenance",
"kind": "door",
"facet": "verb",
"role": "reader",
"domain": "external-read"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/bounded-systems/scout.git"
},
"homepage": "https://github.com/bounded-systems/scout#readme",
"bugs": {
"url": "https://github.com/bounded-systems/scout/issues"
},
"keywords": [
"scout",
"content-addressed",
"provenance",
"grep",
"surface-reads"
],
"exports": {
".": {
"bun": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@bounded-systems/seam-check": "npm:@jsr/bounded-systems__seam-check@^0.1.0",
"@types/bun": "^1.3.14",
"typescript": "^6.0.3"
},
"dependencies": {
"@bounded-systems/anchored-chain": "npm:@jsr/bounded-systems__anchored-chain@^0.2.1",
"@bounded-systems/anchored-chain-sqlite": "npm:@jsr/bounded-systems__anchored-chain-sqlite@^0.2.1",
"@bounded-systems/cas": "npm:@jsr/bounded-systems__cas@^0.1.2"
}
}