-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@jspaste/library",
"version": "0.0.0",
"homepage": "https://jspaste.eu",
"repository": {
"type": "git",
"url": "git+https://github.com/jspaste/library.git"
},
"license": "EUPL-1.2",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"build": "bun run build:library && bun run build:library:minified",
"build:library": "bun bunchee --runtime=browser --target=es2021",
"build:library:minified": "bun bunchee --runtime=browser --target=es2021 --minify --no-clean --no-dts --output=./dist/index.min.js",
"fix": "bun run fix:biome && bun run fix:package",
"fix:biome": "bun biome check --write",
"fix:package": "bun sort-package-json --quiet",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bun biome lint",
"lint:tsc": "bun tsc --noEmit",
"prepack": "bun run build",
"test": "bun run lint && bun test"
},
"devDependencies": {
"@biomejs/biome": "~1.9.2",
"@types/bun": "~1.1.10",
"bunchee": "~5.4.0",
"lefthook": "~1.7.16",
"sort-package-json": "~2.10.1",
"ts-deepmerge": "~7.0.1",
"typescript": "~5.6.2"
},
"engines": {
"node": ">=18.17.0"
},
"engineStrict": true,
"trustedDependencies": [
"@biomejs/biome",
"lefthook"
]
}