-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 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
54
55
56
57
58
59
60
61
62
{
"name": "micropub-helper",
"version": "2.0.1",
"description": "A simple helper class for creating micropub clients",
"keywords": [
"micropub",
"indieweb"
],
"type": "module",
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"require": "./dist/main.cjs",
"import": "./dist/main.js"
}
},
"homepage": "https://github.com/grantcodes/micropub",
"bugs": "https://github.com/grantcodes/micropub/issues",
"browserslist": "> 1%, not dead",
"engines": {
"node": ">=20.0.0"
},
"author": "Grant Richmond <mail@grant.codes> (https://grant.codes)",
"license": "MIT",
"dependencies": {
"qs": "^6.14.1",
"rel-parser": "^2.0.0"
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"fix": "run-s fix:lint",
"fix:lint": "npx @biomejs/biome format --write src",
"test": "run-s test:lint test:build test:unit",
"test:build": "tsup --env.TEST=yes",
"test:lint": "npx @biomejs/biome lint src",
"test:unit": "node --test **/*.test.js"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@grantcodes/commit": "^2.0.0",
"@types/node": "^24.10.7",
"@types/qs": "^6.14.0",
"npm-run-all": "^4.1.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"@biomejs/biome": "2.3.11"
},
"files": [
"dist/**/*",
"!**/*.test.*",
"CHANGELOG.md",
"LICENSE",
"README.md"
]
}