-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.79 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.79 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
{
"name": "hlp",
"version": "3.7.7",
"main": "_js/_build/script.js",
"module": "hlp.esm.js",
"exports": {
".": {
"import": "./hlp.esm.js",
"require": "./_js/_build/script.js"
}
},
"files": [
"_js/_build/*.js",
"hlp.js",
"hlp.esm.js"
],
"scripts": {
"js:vite": "vite build --logLevel error",
"js:minify": "terser --compress --mangle --output ./hlp.js ./hlp.js",
"js:babel": "npx babel ./_js/script.ts --out-dir ./_js/_build/ --extensions .ts",
"js:tests": "jest --verbose --noStackTrace --no-cache",
"js": "npm-run-all --sequential js:vite js:minify js:babel js:tests",
"watch:js": "onchange ./_js/*.ts ./_tests/index.html --initial --poll 25 --delay 0 --await-write-finish 25 -- onerror \"npm run js --silent\" --title \"watch:js\" --message \"build failed\" --sound mute",
"watch:js-test": "onchange ./_tests/_js/*.ts --initial --poll 25 --delay 0 --await-write-finish 25 -- onerror \"npm run js:tests --silent\" --title \"watch:js-test\" --message \"build failed\" --sound mute",
"prod": "npm-run-all --parallel js",
"dev": "npm-run-all --parallel watch:*"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/vielhuber/hlp.git"
},
"author": "David Vielhuber <david@vielhuber.de>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.28.6"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@prettier/plugin-php": "^0.24.0",
"@types/jest": "^30.0.0",
"autoprefixer": "^10.4.27",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^30",
"babel-plugin-array-includes": "^2.0.3",
"babel-runtime": "^6.26.0",
"babelify": "^10.0.0",
"browser-sync": "^3.0.4",
"caniuse-lite": "^1.0.30001778",
"cli-error-notifier": "^3.0.2",
"concat": "^1.0.3",
"core-js": "^3.48.0",
"cross-spawn": "^7.0.6",
"del-cli": "^7.0.0",
"dotenv": "^17.3.1",
"element-closest": "^3.0.2",
"env-cmd": "^11.0.0",
"eslint": "^10.0.3",
"exit": "^0.1.2",
"from-env": "^1.1.4",
"highlight.js": "^11.11.1",
"ismobilejs": "^1.1.1",
"jest": "^30",
"jest-cli": "^30",
"jest-environment-jsdom": "^30",
"jest-puppeteer": "^11.0.0",
"mdn-polyfills": "^5.20.0",
"move-file-cli": "^3.0.0",
"ncp": "^2.0.0",
"npm-check-updates": "^19.6.3",
"npm-run-all2": "^8.0.4",
"onchange": "^7.1.0",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"postcss-tailwind-data-attr": "^1.0.7",
"prettier": "^3.8.1",
"puppeteer": "^24.39.1",
"regenerator-runtime": "^0.14.1",
"replace-in-file": "^8.4.0",
"rimraf": "^6.1.3",
"run-sequence": "^2.2.1",
"sass": "^1.98.0",
"tailwindcss": "^4.2.1",
"terser": "^5.46.0",
"typescript": "^5.9.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"vite": "^8.0.0",
"whatwg-fetch": "^3.6.20"
},
"browserslist": [
"ie >= 11",
"> 0.25%",
"not dead"
],
"engines": {
"node": ">=18"
}
}