-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "@igor.dvlpr/scrollend-polyfill",
"version": "1.2.1",
"description": "🛴 A performant and light (< 1.5KB) JavaScript polyfill for the scrollend Event. ⛸️",
"sideEffects": true,
"browser": "./dist/scrollend.min.js",
"files": ["dist/scrollend.min.js"],
"scripts": {
"build": "esbuild src/index.mts --minify --target=es6 --bundle --outfile=./dist/scrollend.min.js",
"debug": "esbuild src/index.mts --target=es6 --bundle --outfile=./dist/scrollend.js",
"start": "npm run debug && node ./test/server.mjs",
"test": "npm run build && npm start",
"pub": "npm run build && npm publish --access public"
},
"keywords": [
"scrollend",
"scroll-end",
"browser",
"scroll",
"event",
"polyfill",
"dom",
"document",
"interactivity",
"igorskyflyer",
"igor.dvlpr"
],
"license": "MIT",
"author": "Igor Dimitrijević <igor.dvlpr@gmail.com> (https://github.com/igorskyflyer)",
"funding": "https://ko-fi.com/igorskyflyer",
"homepage": "https://github.com/igorskyflyer/npm-scrollend-polyfill",
"repository": {
"type": "git",
"url": "git+https://github.com/igorskyflyer/npm-scrollend-polyfill.git"
},
"bugs": {
"url": "https://github.com/igorskyflyer/npm-scrollend-polyfill/issues"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@igor.dvlpr/common-types": "^1.2.0",
"@types/node": "^20.14.11",
"esbuild": "^0.23.0",
"typescript": "^5.5.3"
},
"dependencies": {
"@igor.dvlpr/hook": "^1.1.0"
}
}