-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.51 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
{
"name": "bind4",
"version": "0.0.0-PLACEHOLDER",
"type": "module",
"scripts": {
"build": "rslib build",
"prepare": "pnpm --package [email protected] dlx husky",
"bun": "pnpm --package [email protected] dlx bun",
"test": "pnpm bun test --coverage tests",
"test:pkg": "node --test package.test.js",
"prepack": "pnpm test && pnpm build && pnpm test:pkg",
"deploy": "npm pack",
"docs": "pnpm --package [email protected] --package [email protected] dlx typedoc"
},
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts",
"legacy": "./dist/legacy/index.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"legacy": "./dist/legacy/index.js",
"types": "./dist/types/index.d.ts"
},
"./package.json": "./package.json",
"./*.js": {
"import": "./dist/esm/*.js",
"require": "./dist/cjs/*.cjs",
"legacy": "./dist/legacy/*.js"
},
"./*.d.ts": "./dist/types/*.d.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@rslib/core": "0.1.3",
"@types/bun": "^1.1.14",
"expect": "^29.7.0",
"typescript": "^5.7.2"
},
"nano-staged": {
"*.{js,ts,cts,mts}": "biome check --write --diagnostic-level=error --no-errors-on-unmatched"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}