-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
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
63
64
65
66
{
"name": "async-neocities",
"description": "A library and bin to deploy to neocities",
"version": "4.1.0",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
"type": "module",
"bin": {
"async-neocities": "./bin.js",
"an": "./bin.js"
},
"bugs": {
"url": "https://github.com/bcomnes/async-neocities/issues"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"dependencies": {
"@lukeed/ms": "^2.0.2",
"@types/combined-stream": "^1.0.6",
"application-config": "^3.0.0",
"argsclopts": "^1.0.4",
"async-folder-walker": "^3.0.1",
"form-data": "^4.0.0",
"minimatch": "^10.0.0",
"password-prompt": "1.1.3",
"undici": "^7.0.0"
},
"devDependencies": {
"@voxpelli/tsconfig": "^15.0.0",
"auto-changelog": "^2.2.0",
"c8": "^10.0.0",
"dotenv": "^16.4.5",
"gh-release": "^7.0.0",
"neostandard": "^0.12.0",
"npm-run-all": "^4.1.5",
"typescript": "~5.7.2"
},
"homepage": "https://github.com/bcomnes/async-neocities",
"keywords": [
"neocities",
"async",
"api client",
"static hosting"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/bcomnes/async-neocities.git"
},
"scripts": {
"prepublishOnly": "npm run build && git push --follow-tags && gh-release -y",
"postpublish": "npm run clean",
"test": "run-s test:*",
"test:lint": "eslint",
"test:tsc": "tsc",
"test:node": "c8 node --test",
"version": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"clean": "run-p clean:*",
"clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f \\( -name '*.d.ts*' -o -name '*.cts*' \\))",
"clean:declarations-lib": "rm -rf $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts')",
"build": "npm run clean && run-p build:*",
"build:declaration": "tsc -p declaration.tsconfig.json"
}
}