-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.7 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
{
"name": "smooothy",
"author": "vallafederico",
"version": "0.0.35",
"description": "",
"type": "module",
"main": "index.js",
"types": "./dist/index.d.ts",
"unpkg": "./dist/smooothy.min.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/esm.js",
"require": "./dist/cjs.js",
"unpkg": "./dist/smooothy.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vallafederico/smooothy.git"
},
"bugs": {
"url": "https://github.com/vallafederico/smooothy/issues"
},
"homepage": "https://github.com/vallafederico/smooothy#readme",
"keywords": [
"slider",
"smooth",
"carousel",
"infinite",
"infinite scroll",
"parallax",
"parallax scroll",
"parallax slider",
"parallax carousel"
],
"scripts": {
"build": "pnpm run -w --parallel /^build:.*/",
"build:package": "bun run bin/build.ts",
"build:web": "cd web && pnpm build",
"test:build": "bun run bin/test-build.ts",
"dev": "pnpm run -w --parallel /^dev:.*/",
"dev:web": "cd web && pnpm dev",
"dev:package": "bun run bin/dev.ts",
"pub": "npm version patch && pnpm run build:package && npm publish",
"release:patch": "npm version patch && pnpm run build:package && npm publish",
"release:minor": "npm version minor && pnpm run build:package && npm publish",
"release:major": "npm version major && pnpm run build:package && npm publish"
},
"files": [
"dist/",
"package.json",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@types/virtual-scroll": "^2.0.3",
"bun": "^1.2.4",
"bun-plugin-dts": "^0.3.0",
"esbuild": "^0.25.0"
},
"dependencies": {
"virtual-scroll": "^2.2.1"
}
}