-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.1 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 4.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@alphanull/jsdoc-vision-theme",
"version": "1.2.2",
"description": "JSDoc VisionTheme is a modern, clean, fully responsive, and highly customizable theme for JSDoc, designed to elevate documentation for next-generation JavaScript projects.",
"keywords": [
"javascript",
"documentation",
"jsdoc",
"theme",
"template",
"jsdoc-theme",
"jsdoc-template",
"vision-theme"
],
"author": {
"name": "Frank Kudermann",
"email": "kudermann@alphanull.de",
"url": "https://alphanull.de"
},
"homepage": "https://github.com/alphanull/jsdoc-vision-theme",
"repository": {
"type": "git",
"url": "git+https://github.com/alphanull/jsdoc-vision-theme.git"
},
"bugs": {
"url": "https://github.com/alphanull/jsdoc-vision-theme/issues"
},
"license": "Apache-2.0",
"type": "module",
"main": "publish.js",
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=23.0.0"
},
"publishConfig": {
"access": "public"
},
"browserslist": [
"Firefox >= 75",
"Chrome >= 79",
"Safari >= 13",
"iOS >= 13",
"Edge >= 79",
"last 2 versions",
"not node > 0",
"not dead",
"not op_mini all"
],
"files": [
"assets/images",
"publish.js",
"lib",
"static",
"tmpl",
"README.md",
"LICENSE"
],
"exports": {
"./publish": {
"import": "./publish.js",
"default": "./publish.js"
}
},
"dependencies": {
"@highlightjs/cdn-assets": "^11.11.1",
"@jsdoc/name": "^0.1.1",
"@jsdoc/salty": "^0.2.9",
"@jsdoc/tag": "^0.2.13",
"@jsdoc/util": "^0.3.4",
"catharsis": "^0.11.0",
"common-path-prefix": "^3.0.0",
"fast-glob": "^3.3.3",
"fuse.js": "^7.1.0",
"he": "^1.2.0",
"lenis": "^1.3.16",
"lodash": "^4.17.21",
"striptags": "^3.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@stylistic/eslint-plugin": "^5.6.1",
"@stylistic/stylelint-plugin": "^4.0.0",
"autoprefixer": "^10.4.23",
"browserslist": "^4.28.1",
"chokidar-cli": "^3.0.0",
"cssnano": "^7.1.2",
"eslint": "^9.39.2",
"eslint-plugin-jsdoc": "^61.5.0",
"jsdoc": "^4.0.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-combine-media-query": "^2.1.0",
"postcss-inline-svg": "^6.0.0",
"postcss-input-range": "^6.0.0",
"postcss-reporter": "^7.1.0",
"postcss-scss": "^4.0.9",
"rimraf": "^6.1.2",
"rollup": "^4.53.5",
"rollup-plugin-esbuild": "^6.2.1",
"sass": "^1.97.0",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^16.0.0",
"stylelint-order": "^7.0.0",
"stylelint-scss": "^6.13.0"
},
"scripts": {
"watch": "run-p watch:scss:postcss watch:js",
"build": "run-p build:js build:scss",
"build:js": "rimraf static/scripts && rollup -c ./scripts/rollup.config.js",
"watch:js": "rollup --watch -c ./scripts/rollup.config.js",
"build:scss": "rimraf static/styles && sass --no-source-map assets/scss/main.scss:static/styles/main.css && postcss static/styles/main.css --replace --config ./scripts/postcss.config.cjs && npm run version:css",
"watch:scss:postcss": "chokidar 'assets/scss/**/*.scss' -c 'npm run build:scss'",
"version:css": "mv static/styles/main.css static/styles/main.$(node -p \"require('./package.json').version\").css",
"lint": "echo 'Running ESLint...' && eslint src/** lib/** && echo 'Running Stylelint...' && stylelint assets/scss/**/*.scss",
"lint:fix": "echo 'Running ESLint FIX...' && eslint src/** lib/** --fix && echo 'Running Stylelint FIX...' && stylelint assets/scss/**/*.scss --fix",
"doc": "jsdoc --configure ./scripts/jsdoc.conf.json"
}
}