-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.49 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
{
"name": "@preachjs/popper",
"version": "0.0.6",
"description": "micro positioning library",
"homepage": "https://github.com/preachjs/popper",
"bugs": {
"url": "https://github.com/preachjs/popper/issues"
},
"repository": {
"url": "git+https://github.com/preachjs/popper.git"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "reaper",
"email": "[email protected]",
"url": "https://reaper.is"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./arrow": {
"types": "./dist/arrow.d.ts",
"import": "./dist/arrow.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": ["dist/*"],
"scripts": {
"dev": "node build.js -w",
"build": "node build.js",
"fix": "biome check --fix .",
"prepare": "husky",
"next": "bumpp",
"publint": "publint",
"prepublishOnly": "node build.js"
},
"nano-staged": {
"*.{js,ts,json}": ["biome check --fix"],
"*.{md}": ["prettier --write"]
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@barelyhuman/prettier-config": "^2.0.2",
"@biomejs/biome": "^1.9.4",
"bumpp": "^9.9.2",
"chokidar": "^4.0.3",
"esbuild": "^0.24.2",
"esbuild-plugin-d.ts": "^1.3.1",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"prettier": "^3.4.2",
"publint": "^0.2.12",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}