-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.61 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
{
"name": "ramifyjs",
"version": "0.0.4",
"private": true,
"keywords": [
"ramify",
"ramifyjs",
"ramify-db",
"in-memory-database",
"reactive-database",
"live-query",
"observable-query",
"react-hooks",
"typescript-database",
"browser-database",
"local-database",
"query-builder",
"real-time-data",
"state-management",
"data-store",
"memdb",
"nosql",
"javascript"
],
"author": "Haroon (https://github.com/haroonwaves)",
"license": "MIT",
"scripts": {
"dev": "pnpm -r dev",
"build": "pnpm -r build",
"check": "npm run lint && npm run format:check && npm run type-check && npm run test",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "pnpm -r type-check",
"publish:packages": "pnpm -r publish --access public",
"version:bump": "pnpm version patch --recursive --no-git-tag-version",
"test": "pnpm -r test",
"benchmark": "pnpm -r benchmark"
},
"devDependencies": {
"@cspell/eslint-plugin": "^9.3.0",
"@types/node": "^24.10.1",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.46.2",
"tsup": "^7.2.0"
},
"packageManager": "pnpm@10.18.3",
"engines": {
"node": ">=18"
}
}