-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
{
"name": "@mr-scroll/core",
"description": "The best custom scroll for the web. This is the core package.",
"version": "1.2.0",
"main": "dist/umd/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"start": "npm run watch",
"watch": "concurrently \"npm run watch:ts\" \"npm run watch:scss\"",
"watch:ts": "rollup -c rollup.config.es.js -w",
"watch:scss": "nodemon --watch ./src/scss -e scss -x \"npm run bundle:css\"",
"build": "rollup -c rollup.config.es.js && rollup -c rollup.config.umd.js && npm run bundle:css",
"bundle:css": "npx sass src/scss/scroll.scss dist/styles.css",
"docs": "typedoc src/index.ts --out docs-ts && sassdoc src/scss -d docs-scss",
"prepublishOnly": "npm run build"
},
"keywords": [
"custom",
"scroll",
"scrollbar"
],
"author": "Mohammad Rahhal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrahhal/mr-scroll"
},
"bugs": {
"url": "https://github.com/mrahhal/mr-scroll/issues"
},
"files": [
"dist",
"src/scss"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"rxjs": ">=6.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"concurrently": "^6.1.0",
"nodemon": "^2.0.7",
"rollup": "^2.47.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rxjs": "^6.6.7",
"sass": "^1.32.13",
"sassdoc": "^2.7.3",
"tslib": "^2.2.0",
"typedoc": "^0.20.36",
"typescript": "~4.2.4"
}
}