-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 2.25 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
{
"name": "byoe-react-examples",
"description": "Examples for building 'Bring Your Own Everything' (BYOE) apps on Wallet Attached Storage with @interop/was-react: one example app per tier, from a single-document local-first game save to a wallet-gated multi-collection CRUD app.",
"version": "0.1.1",
"private": true,
"type": "module",
"scripts": {
"dev:notes": "pnpm --filter byoe-notes-example run dev",
"dev:save-file": "pnpm --filter byoe-save-file-example run dev",
"build": "pnpm -r run build",
"typecheck": "pnpm -r run typecheck",
"fix": "eslint --fix examples && pnpm run format",
"format": "prettier --write \"*.md\" \"docs/**/*.md\" \"examples/*/src/**/*.{ts,tsx}\" \"examples/*/test/**/*.ts\" \"examples/*/scripts/**/*.ts\" \"examples/*/*.md\"",
"lint": "eslint examples",
"test": "pnpm run lint && pnpm run test:node",
"test:node": "pnpm -r run test:node",
"test:browser": "pnpm -r --workspace-concurrency=1 run test:browser",
"test:browser:was": "pnpm --filter byoe-notes-example run test:browser:was",
"test:browser:wallet": "pnpm --filter byoe-notes-example run test:browser:wallet",
"provision:dev": "pnpm --filter byoe-notes-example run provision:dev",
"npm:clear": "rm -rf pnpm-lock.yaml node_modules examples/*/node_modules && node -e \"const fs=require('fs');const f='pnpm-workspace.yaml';fs.writeFileSync(f,fs.readFileSync(f,'utf8').replace(/minimumReleaseAgeExclude:\\n( - .*\\n?)*/,''))\""
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
},
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=24.0"
},
"keywords": [
"byoe",
"chapi",
"wallet-attached-storage",
"did-auth",
"local-first",
"react",
"examples"
],
"author": "Interop Alliance (https://github.com/interop-alliance/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/interop-alliance/byoe-react-examples.git"
},
"homepage": "https://github.com/interop-alliance/byoe-react-examples",
"bugs": "https://github.com/interop-alliance/byoe-react-examples/issues"
}