-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "filter-data",
"version": "0.6.1",
"packageManager": "[email protected]",
"description": "simple, fast data filter",
"keywords": [
"match-sorter",
"data filter",
"filter data",
"search data",
"datatable",
"fast search"
],
"author": "ThunderMiracle",
"license": "MIT",
"main": "./dist/cjs/index.cjs",
"module": "./dist/es/index.js",
"types": "./dist/index.d.ts",
"unpkg": "./umd/filterdata.umd.js",
"jsdelivr": "./umd/filterdata.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/es/index.js",
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.cjs",
"default": "./dist/es/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"umd"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thundermiracle/filter-data.git"
},
"bugs": {
"url": "https://github.com/thundermiracle/filter-data/issues"
},
"homepage": "https://github.com/thundermiracle/filter-data#readme",
"scripts": {
"eslint:src": "eslint src/",
"eslint:test": "eslint __test__/",
"eslint": "pnpm eslint:src && pnpm eslint:test",
"jest": "jest",
"type-check": "tsc --noEmit --project tsconfig.eslint.json",
"type-check:watch": "pnpm type-check -- --watch",
"test": "pnpm type-check && pnpm eslint && pnpm jest",
"bench": "tsx ./benchmark/index.ts",
"prettier": "prettier --write 'src/**/*.ts' '__test__/**/*.ts'",
"prebuild": "rimraf lib/ && rimraf dist/ && rimraf es/",
"build": "rollup -c",
"cs:version": "changeset version",
"cs:release": "pnpm build && changeset publish"
},
"dependencies": {
"ramda": "^0.30.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@swc/core": "^1.7.42",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.5",
"@types/ramda": "^0.30.2",
"@web-configs/eslint-plugin": "^0.5.2",
"@web-configs/prettier": "^0.1.2",
"eslint": "^8.57.1",
"fuse.js": "^7.0.0",
"jest": "^29.7.0",
"match-sorter": "^6.3.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^3.29.5",
"rollup-plugin-dts": "^6.1.1",
"ts-toolbelt": "^9.6.0",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"prettier": "@web-configs/prettier"
}