-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "@lowerdeck/pagination",
"version": "1.0.7",
"publishConfig": {
"access": "public"
},
"files": [
"src/**",
"dist/**",
"README.md",
"package.json"
],
"author": "Tobias Herber",
"license": "Apache 2",
"type": "module",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.module.js",
"default": "./dist/index.module.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"types": "dist/index.d.ts",
"unpkg": "./dist/index.umd.js",
"scripts": {
"test": "vitest run --passWithNoTests",
"lint": "prettier src/**/*.ts --check",
"build": "rm -rf ./dist && microbundle"
},
"devDependencies": {
"@lowerdeck/tsconfig": "^1.0.1",
"microbundle": "^0.15.1",
"mongoose": "^9.0.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@lowerdeck/base62": "^1.0.4",
"@lowerdeck/error": "^1.2.2",
"@lowerdeck/validation": "^1.0.8"
}
}