-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
111 lines (111 loc) · 3.79 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
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
109
110
111
{
"version": "1.4.224",
"name": "@frsource/light-scrollbar",
"description": "Minimalistic plugin to create custom scrollbars! 💪",
"source": "./src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"sass": "src/index.scss",
"styles": "dist/index.css",
"scripts": {
"start": "pnpm clean && microbundle --no-compress --no-sourcemap --format=modern,esm,cjs watch --tsconfig tsconfig.build.json",
"build": "pnpm clean && pnpm minify-data && microbundle --compress --tsconfig tsconfig.build.json && pnpm copy-tmp-to-src && pnpm clean:tmp && pnpm restore-index",
"build-backup": "pnpm clean && microbundle --compress --tsconfig tsconfig.build.json",
"lint": "pnpm lint.script",
"lint.fix": "pnpm lint.script.fix",
"lint.script": "eslint . --ext .js,.ts,.vue",
"lint.script.fix": "pnpm lint.script --fix",
"lint.ci": "pnpm lint.script --max-warnings 0",
"prettify": "prettier --write src",
"prettify.ci": "prettier --check src",
"test": "concurrently \"pnpm dev-server\" \"pnpm start\" \"cypress open --e2e\"",
"test.ci": "concurrently --kill-others --success first \"pnpm dev-server\" \"wait-on ./dist/index.js && pnpm cypress run --headless --browser chrome --env CI=true\"",
"release": "semantic-release",
"release.ci": "pnpm release --yes",
"release.test": "pnpm release --no-git-tag-version --no-push --skip-npm",
"clean": "rimraf dist/**/*",
"minify-data": "node scripts/replace.js",
"copy-tmp-to-src": "cpy index_tmp.ts src",
"restore-index": "renamer --find index_tmp.ts --replace index.ts 'src/**'",
"clean:tmp": "rimraf src/index.ts && rimraf index_tmp.ts",
"dev-server": "concurrently \"pnpm start\" \"http-server -p 3000\"",
"docs:dev": "concurrently \"pnpm start\" \"vitepress dev docs\"",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"homepage": "https://github.com/FRSOURCE/light-scrollbar/",
"repository": {
"type": "git",
"url": "git+https://github.com/FRSOURCE/light-scrollbar.git"
},
"keywords": [
"custom scrollbar",
"light scrollbar",
"lightweight",
"simple",
"every browser"
],
"bugs": {
"url": "https://github.com/FRSOURCE/light-scrollbar/issues"
},
"author": "Szymon Dziewoński <[email protected]>",
"license": "MIT",
"devDependencies": {
"@frsource/frs-replace": "4.1.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "10.0.4",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.6",
"@semantic-release/npm": "10.0.6",
"@semantic-release/release-notes-generator": "11.0.7",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"concurrently": "8.2.2",
"cpy-cli": "5.0.0",
"cypress": "13.9.0",
"cypress-real-events": "^1.7.4",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.2",
"eslint-plugin-eslint-comments": "3.2.0",
"http-server": "14.1.1",
"incstr": "1.2.3",
"lodash-es": "^4.17.21",
"microbundle": "0.15.1",
"prettier": "3.3.3",
"renamer": "4.0.0",
"rimraf": "^5.0.1",
"sass": "1.77.8",
"semantic-release": "21.1.2",
"ts-essentials": "10.0.2",
"typescript": "5.4.5",
"vitepress": "1.1.4",
"vue": "3.4.38",
"wait-on": "^7.0.1"
},
"dependencies": {
"@frsource/frs-hide-scrollbar": "^2.0.7"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
}
}
}