-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@jspaste/library",
"version": "0.0.1",
"homepage": "https://jspaste.eu",
"repository": {
"type": "git",
"url": "git+https://github.com/jspaste/library.git"
},
"license": "EUPL-1.2",
"type": "module",
"exports": {
".": {
"types": {
"default": "./dist/index.d.ts"
},
"import": "./dist/library.js"
}
},
"module": "./dist/library.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/"
],
"scripts": {
"build": "bun next build",
"fix": "bun run fix:biome && bun run fix:package",
"fix:biome": "bun --bun biome check --apply .",
"fix:package": "bun --bun sort-package-json --quiet",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bun --bun biome lint .",
"lint:tsc": "bun --bun tsc --noEmit",
"test": "bun run fix && bun test"
},
"devDependencies": {
"@biomejs/biome": "~1.7.3",
"@types/bun": "~1.1.1",
"lefthook": "~1.6.10",
"sort-package-json": "~2.10.0",
"typescript": "~5.4.5"
},
"engines": {
"node": ">=18.17.0"
},
"engineStrict": true,
"trustedDependencies": [
"@biomejs/biome"
]
}