-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "nodebb-plugin-timestamp",
"version": "1.1.1",
"description": "Insert a relative time component into the post | 在帖子中插入相对时间组件",
"homepage": "https://github.com/TASA-Ed/nodebb-plugin-timestamp",
"bugs": {
"url": "https://github.com/TASA-Ed/nodebb-plugin-timestamp/issues"
},
"license": "MIT",
"author": "TASA-Ed Studio",
"contributors": [
"ccd2s <tasaedem@outlook.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TASA-Ed/nodebb-plugin-timestamp.git"
},
"type": "module",
"main": "./build/index.js",
"scripts": {
"dev": "rolldown -c ./rolldown.config.ts --watch",
"build": "rolldown -c ./rolldown.config.ts && tsc --noEmit",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"devDependencies": {
"@types/jquery": "^4.0.1",
"@types/node": "^25.9.3",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"rolldown": "^1.1.1",
"typescript": "^6.0.3"
},
"nbbpm": {
"compatibility": "^4.12.0"
}
}