-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1001 Bytes
/
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
{
"name": "bipack",
"version": "0.0.1-alpha.0",
"main": "dist/index.js",
"author": "Vyacheslav Ruzanov <[email protected]>",
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"scripts": {
"size": "size-limit",
"build": "tsup && yarn size",
"eslint": "eslint ./src ./test",
"test": "jest"
},
"devDependencies": {
"@size-limit/preset-small-lib": "8.1.0",
"@types/jest": "29.2.4",
"@types/node": "18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-plugin-compat": "4.0.2",
"jest": "29.3.1",
"size-limit": "8.1.0",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"tsup": "6.5.0",
"typescript": "4.9.4"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"browserslist": [
"defaults, not dead"
]
}