-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 863 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 863 Bytes
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
{
"name": "@ironarachne/words",
"version": "1.1.0",
"description": "A library for dealing with words",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"biome": "biome ci src/index.ts",
"build": "tsc",
"format": "biome format --write src/index.ts",
"docs": "typedoc --out docs src/index.ts",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ironarachne/words.git"
},
"keywords": [
"words"
],
"author": "Ben Overmyer <ben@overmyer.net> (https://benovermyer.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ironarachne/words/issues"
},
"homepage": "https://github.com/ironarachne/words#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"typedoc": "^0.28.5",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
}
}