-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 988 Bytes
/
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
{
"name": "blipgloss",
"version": "0.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "",
"scripts": {
"build": "bun run ./build.mjs",
"build:go": "./build.sh",
"release": "bumpp --commit --push --tag && npm publish",
"prepublishOnly": "bun run build",
"lint": "biome check src",
"format": "biome format src --write",
"test": "bun wiptest"
},
"files": [
"dist",
"release"
],
"keywords": [
"bun"
],
"license": "MIT",
"homepage": "https://github.com/wobsoriano/blipgloss#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/blipgloss.git"
},
"bugs": "https://github.com/wobsoriano/blipgloss/issues",
"author": "Robert Soriano <[email protected]>",
"devDependencies": {
"@biomejs/biome": "1.2.2",
"@types/color": "^3.0.4",
"bun-plugin-dts": "^0.2.0",
"bun-types": "^1.0.2",
"color": "^4.2.3",
"typescript": "^5.2.2"
}
}