-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "@curiousleaf/utils",
"description": "A lightweight set of utilities",
"version": "1.1.1",
"license": "MIT",
"type": "module",
"author": {
"name": "Piotr Kulpinski",
"email": "[email protected]",
"url": "https://kulpinski.pl"
},
"repository": "curious-leaf/utils",
"files": ["dist"],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"clean": "rimraf ./dist",
"build": "vite build && tsc --emitDeclarationOnly",
"prebuild": "bun run clean",
"lint": "bun biome lint --apply .",
"format": "bun biome format --write ."
},
"dependencies": {
"@sindresorhus/slugify": "^2.2.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.17",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"vite": "^6.0.7"
},
"peerDependencies": {
"@sindresorhus/slugify": "^2.2.1"
}
}