-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.5 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@yookue/typedoc-theme-dumi",
"version": "0.4.0",
"title": "TypedocThemeDumi",
"description": "Dumi theme for typedoc, maybe the most beautiful typedoc theme on Mars",
"homepage": "https://yookue.github.io/typedoc-theme-dumi",
"organization": "Yookue Ltd",
"private": false,
"license": "MIT",
"keywords": [
"typedoc",
"typedoc-theme",
"typedoc-theme-dumi"
],
"files": [
"dist"
],
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "npm run build:script && npm run build:style",
"build:script": "del-cli ./dist && tsc --outDir ./dist/lib",
"build:style": "lessc src/asset/dumi.less ./dist/lib/assets/dumi.css --no-comment",
"docs:build": "typedoc --out ./docs-dist",
"docs:publish": "gh-pages -d ./docs-dist",
"lint": "npm run lint:script && npm run lint:style",
"lint:script": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"lint:style": "stylelint \"{src,test}/**/*.{css,less}\""
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@types/node": "^18.19.64",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"del-cli": "^6.0.0",
"gh-pages": "^6.3.0",
"globals": "^16.0.0",
"less": "^4.3.0",
"less-plugin-no-comment": "^0.1.0",
"stylelint-config-standard-less": "^3.0.1",
"typedoc": "~0.28.2",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yookue/typedoc-theme-dumi.git"
},
"bugs": {
"url": "https://github.com/yookue/typedoc-theme-dumi/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"collective": {
"url": "https://opencollective.com/yookue-awesome"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/yookue-awesome"
},
{
"type": "individual",
"url": "https://yookue.com/public/donate"
}
],
"author": {
"name": "Yookue Ltd",
"email": "yookue@outlook.com",
"url": "https://yookue.com"
},
"contributors": [
{
"name": "David Hsing",
"email": "davidhsing@163.com",
"url": "https://github.com/davidhsing"
}
]
}