-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.57 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
{
"name": "create-tinybase",
"version": "1.0.1",
"author": "jamesgpearce",
"repository": {
"type": "git",
"url": "git+https://github.com/tinyplex/create-tinybase.git"
},
"license": "MIT",
"homepage": "https://tinybase.org",
"description": "A command-line tool to create TinyBase apps with full synchronization and local-first capabilities.",
"keywords": [
"tiny",
"sync engine",
"local-first",
"reactive",
"state",
"data",
"react",
"sqlite",
"pglite",
"durable-objects"
],
"private": true,
"type": "module",
"bin": {
"create-tinybase": "./cli.js"
},
"scripts": {
"build": "node build.js",
"ts": "tsc --noEmit -p src/tsconfig.json && tsc --noEmit -p test/tsconfig.json",
"prettier": "prettier --check .",
"lint": "eslint .",
"test": "npm run build && vitest run --exclude test/e2e",
"test:e2e": "npm run build && vitest run test/e2e",
"test:manual": "npm run build && ./test/manual-test.sh",
"prePublishPackage": "npm run ts && npm run prettier && npm run lint && npm run test && npm run test:e2e"
},
"dependencies": {
"tinycreate": "^1.0.4"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.3.5",
"esbuild": "^0.27.3",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"puppeteer": "^24.38.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}