-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.25 KB
/
package.json
File metadata and controls
89 lines (89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "figbird",
"version": "0.21.2",
"description": "Effortless realtime data management for React + Feathers applications.",
"type": "module",
"types": "./dist/esm/index.d.ts",
"exports": {
"./package.json": "./package.json",
"./package-lock.json": "./package-lock.json",
"./tsconfig.json": "./tsconfig.json",
".": {
"types": "./dist/esm/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"./*": {
"types": "./dist/esm/*.d.ts",
"require": "./dist/cjs/*.js",
"import": "./dist/esm/*.js"
}
},
"scripts": {
"test": "tsc --noEmit && oxlint -c oxlintrc.json && prettier --check '**/*.{ts,tsx,js,jsx,css,yml}' && c8 ava",
"lint": "oxlint -c oxlintrc.json",
"tsc": "tsc --noEmit",
"ava": "ava",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,css,yml}'",
"coverage": "c8 -r html -r text ava",
"build": "node ./tasks/build.js",
"watch": "node ./tasks/build.js -w",
"release": "np",
"release:beta": "np --tag=beta",
"docs:build": "hugo -s docs",
"docs:watch": "hugo server -s docs",
"docs:release": "hugo -s docs && gh-pages -d docs/public"
},
"engines": {
"node": ">=20.0.0"
},
"author": "Humaans",
"license": "ISC",
"dependencies": {
"sift": "^17.1.3"
},
"devDependencies": {
"@swc-node/register": "^1.11.1",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.24",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"ava": "^7.0.0",
"browserslist-config-baseline": "^0.5.0",
"c8": "^11.0.0",
"execa": "^9.6.1",
"gh-pages": "^6.3.0",
"oxlint": "^1.60.0",
"jsdom": "^29.0.2",
"prettier": "^3.8.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "^6.0.2"
},
"sideEffects": false,
"ava": {
"serial": true,
"files": [
"test/*.test.{js,ts,tsx}"
],
"extensions": {
"js": true,
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--import=@swc-node/register/esm-register"
],
"require": [
"./test/setup.ts"
]
},
"overrides": {
"minimatch": "^10.0.0"
},
"np": {
"releaseDraft": false
}
}