-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.09 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
{
"name": "@hilosiva/rola",
"version": "0.2.5",
"description": "Rola is JavaScript library for managing IntersectionObserver and scroll-based animations.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"vite": "pnpm run --filter=vite-playground dev",
"docs:dev": "pnpm run --filter=rola-docs dev",
"docs:build": "pnpm run --filter=rola-docs build",
"docs:preview": "pnpm run --filter=rola-docs preview",
"test": "vitest",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format .",
"format:write": "biome format . --write",
"version:patch": "npm version patch --force --no-git-tag-version && pnpm readme",
"version:minor": "npm version minor --force --no-git-tag-version && pnpm readme",
"version:major": "npm version major --force --no-git-tag-version && pnpm readme",
"readme": "node ./scripts/update.js",
"publish:main": "npm publish",
"publish:beta": "npm publish --tag beta"
},
"style": "dist/rola.css",
"exports": {
".": {
"style": "./dist/rola.css",
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./dist/rola.css": "./dist/rola.css"
},
"publishConfig": {
"provenance": false,
"access": "public",
"exports": {
".": {
"types": "./dist/index.d.ts",
"style": "./dist/rola.css",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./rola.css": "./dist/rola.css"
}
},
"files": [
"dist"
],
"keywords": [
"scrollObserver",
"Scrub"
],
"repository": {
"type": "git",
"url": "https://github.com/hilosiva/rola"
},
"bugs": {
"url": "https://github.com/hilosiva/rola/issues"
},
"homepage": "https://hilosiva.github.io/rola/",
"author": "Shibata Hironori",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"packageManager": "pnpm@9.7.0"
}