-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "public-meta-data",
"version": "0.3.0",
"license": "AGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "HTTP API for Public Meta Data, written in TypeScript & designed for CDN.",
"keywords": [
"public",
"meta",
"data",
"http",
"api",
"typescript",
"cdn"
],
"homepage": "https://idea2app.github.io/public-meta-data/",
"repository": {
"type": "git",
"url": "git+https://github.com/idea2app/public-meta-data.git"
},
"bugs": {
"url": "https://github.com/idea2app/public-meta-data/issues"
},
"source": "src/index.ts",
"dependencies": {
"dom-renderer": "^2.3.0",
"fs-extra": "^11.2.0",
"happy-dom": "^15.7.3",
"marked": "^14.1.2",
"tslib": "^2.7.0",
"web-utility": "^4.4.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"husky": "^9.1.5",
"koapache": "^2.2.2",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.0",
"typescript": "~5.5.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged",
"generate": "tsx src/",
"start": "npm run generate && web-server public/ -p 8080"
}
}