generated from stscoundrel/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "riimut",
"version": "0.9.1",
"description": "Transform latin letters to runes & vice versa. Includes transformers for main runic alphabets",
"repository": "https://github.com/stscoundrel/riimut.git",
"author": "stscoundrel <silvennoinen.sampo@gmail.com>",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12.0.0"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/bun": "latest",
"@types/node": "^20.8.0",
"prettier": "^3.3.3",
"typescript": "^5.2.2"
},
"scripts": {
"prettier:fix": "prettier src tests --write",
"prettier:check": "prettier src tests --check",
"biome:check": "bunx biome lint src tests",
"biome:fix": "bunx biome lint --write src tests",
"lint": "bun run prettier:check && bun run biome:check",
"build": "bun tsc",
"prepublishOnly": "npm run build",
"test:coverage": "bun run test --coverage"
}
}