-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.49 KB
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
{
"name": "@omnidotdev/template-typescript-library",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "TypeScript library template for Omni projects",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
}
},
"files": [
"build"
],
"scripts": {
"prepare": "husky",
"build": "bun src/scripts/build.ts",
"check": "biome check --diagnostic-level=error src",
"clean": "rm -rf build node_modules",
"dev": "bun build src/index.ts --outdir build --target browser --watch",
"format": "biome format --write src",
"knip": "knip-bun --cache --tags=-knipignore",
"lint": "biome lint --write src",
"release": "bun run build && changeset publish",
"test": "bun test"
},
"keywords": [
"omni",
"typescript",
"library"
],
"license": "MIT",
"homepage": "https://github.com/omnidotdev/template-typescript-library#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/omnidotdev/template-typescript-library.git"
},
"bugs": "https://github.com/omnidotdev/template-typescript-library/issues",
"author": "Omni <hey@omni.dev>",
"packageManager": "bun@1.3.6",
"devDependencies": {
"@biomejs/biome": "2.3.12",
"husky": "^9.1.7",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/bun": "^1.3.6",
"knip": "^5.82.1",
"typescript": "^5.9.3"
}
}