forked from iamdustan/smoothscroll
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.93 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
{
"title": "seamless scroll polyfill",
"name": "seamless-scroll-polyfill",
"description": "Smooth Scroll behavior polyfill",
"version": "0.0.0",
"author": {
"name": "Dustan Kasten",
"email": "dustan.kasten@gmail.com",
"url": "https://iamdustan.com"
},
"contributors": [
{
"name": "Jeremias Menichelli",
"email": "jmenichelli@gmail.com",
"url": "https://jeremenichelli.io"
}
],
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-akari": "^0.0.6",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"rollup": "^3.18.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"semantic-release": "^20.1.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"packageManager": "pnpm@7.28.0",
"type": "module",
"main": "./lib/bundle.umd.cjs",
"module": "./lib/index.js",
"unpkg": "./lib/browser.min.js",
"jsdelivr": "./lib/browser.min.js",
"exports": {
".": {
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
},
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"default": "./lib/bundle.umd.cjs"
},
"./package.json": "./package.json",
"./lib/*": "./lib/*"
},
"types": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"esm": "tsc",
"rollup": "rollup -c",
"fix-cts-type": "cp -rf lib/index.d.ts lib/index.d.cts",
"type-check": "tsc --noEmit --skipLibCheck",
"prettier": "prettier --ignore-path .gitignore -l \"**/*.{ts,js,json,yml}\" \"README.md\"",
"prettier:fix": "prettier --ignore-path .gitignore --write \"**/*.{ts,js,json,yml}\" \"README.md\"",
"lint": "eslint --ignore-path .gitignore \"**/*.ts\"",
"prepare": "husky install",
"semantic-release": "HUSKY=0 semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/magic-akari/seamless-scroll-polyfill.git"
},
"keywords": [
"smooth",
"scroll",
"scrollIntoView",
"CSSOM",
"polyfill"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/magic-akari/seamless-scroll-polyfill/issues"
},
"homepage": "https://github.com/magic-akari/seamless-scroll-polyfill"
}