-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.21 KB
/
package.json
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
63
64
65
66
{
"name": "shelving",
"description": "Toolkit for using data in JavaScript.",
"keywords": ["javascript", "typescript", "schema", "validation", "database", "database-connector", "state-management", "query-builder"],
"version": "0.0.0-semantic",
"repository": "https://github.com/dhoulb/shelving",
"author": "Dave Houlbrooke <dave@shax.com>",
"license": "0BSD",
"type": "module",
"module": "./index.js",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./api": "./api/index.js",
"./db": "./db/index.js",
"./error": "./error/index.js",
"./feedback": "./feedback/index.js",
"./firestore/client": "./firestore/client/index.js",
"./firestore/lite": "./firestore/lite/index.js",
"./firestore/server": "./firestore/server/index.js",
"./iterate": "./iterate/index.js",
"./markup": "./markup/index.js",
"./react": "./react/index.js",
"./schema": "./schema/index.js",
"./sequence": "./sequence/index.js",
"./store": "./store/index.js",
"./test": "./test/index.js",
"./util": "./util/index.js"
},
"sideEffects": false,
"engineStrict": true,
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "bun run test:check && bun run test:types && bun run test:unit",
"test:check": "biome check .",
"test:types": "tsc --noEmit",
"test:unit": "bun test",
"fix": "bun run fix:biome",
"fix:biome": "biome check --write .",
"build": "bun run build:setup && bun run build:copy && bun run build:emit && bun run build:test:syntax && bun run build:test:unit",
"build:setup": "rm -rf ./dist && mkdir -p ./dist",
"build:copy": "cp package.json dist/package.json && cp LICENSE.md dist/LICENSE.md && cp README.md dist/README.md && cp .npmignore dist/.npmignore",
"build:emit": "tsc",
"build:test:syntax": "bun run ./dist/index.js",
"build:test:unit": "bun test ./dist/**/*.test.js --bail"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@google-cloud/firestore": "^7.9.0",
"@types/bun": "^1.1.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"firebase": "^10.12.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@google-cloud/firestore": ">=4.0.0",
"firebase": ">=9.0.0",
"react": ">=17.0.0"
}
}