forked from webpop/jquery.pin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.37 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
{
"name": "@luy19/jquery-pin",
"version": "2.1.0",
"description": "jQueryPin is a plugin to pin any element within a container",
"keywords": [
"pin",
"sticky"
],
"type": "module",
"main": "./dist/jquery-pin.cjs.js",
"module": "./dist/jquery-pin.esm.js",
"browser": "./dist/jquery-pin.umd.js",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/jquery-pin.cjs.js",
"import": "./dist/jquery-pin.esm.js",
"default": "./dist/jquery-pin.esm.js",
"browser": "./dist/jquery-pin.umd.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "rollup -c config/rollup.config.dev.js -w",
"build": "rollup -c config/rollup.config.prod.js",
"predeploy": "rollup -c config/rollup.config.dep.js",
"deploy": "pnpm run predeploy && gh-pages -d dist",
"check": "package-check",
"tsc": "tsc --noEmit -p ./src/tsconfig.json",
"lint": "eslint -c ./src/.eslintrc src",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"@skypack/package-check": "^0.2.2",
"@types/jquery": "^3.5.14",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"gh-pages": "^4.0.0",
"rollup": "^3.3.0",
"rollup-merge-config": "^0.0.12",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-eslint2": "^1.0.2",
"rollup-plugin-live-server": "^2.0.0",
"rollup-plugin-static-files": "^0.2.0",
"tslib": "^2.4.1",
"typescript": "~4.8.4"
},
"peerDependencies": {
"jquery": "^3.6.1"
},
"dependencies": {
"jquery": "^3.6.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luy19/jquery-pin.git"
},
"author": "luy19",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/luy19/jquery-pin/issues"
},
"homepage": "https://github.com/luy19/jquery-pin#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}