-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.51 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
75
76
77
78
79
80
81
82
83
84
85
{
"author": {
"name": "Rémino Rem",
"url": "https://remino.net/"
},
"browser": "dist/scrollerful.cjs",
"description": "Small JS & CSS library for scroll animations.",
"dependencies": {
"@remino/astro-middleware": "^0.1.0",
"@remino/astro-site-nav": "^0.4.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"astro": "^7.0.0",
"astro-compressor": "^1.3.0",
"astro-minify-html": "^0.1.1",
"autoprefixer": "^10.4.14",
"concurrently": "^8.2.0",
"cssnano": "^6.0.1",
"cssnano-preset-default": "^6.0.1",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-no-template-curly-in-string-fix": "^1.0.4",
"install": "^0.13.0",
"jasmine": "^4.5.0",
"npm": "^9.2.0",
"npm-watch": "^0.11.0",
"postcss": "^8.4.25",
"postcss-cli": "^10.1.0",
"postcss-load-config": "^4.0.1",
"postcss-value-parser": "^4.2.0",
"prettier": "^3.9.1",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vite": "^8.1.0"
},
"exports": {
"import": "./dist/scrollerful.mjs",
"require": "./dist/scrollerful.cjs"
},
"files": [
"dist/*"
],
"homepage": "https://remino.net/scrollerful/",
"keywords": [
"javascript",
"css",
"animation",
"scroll"
],
"license": "ISC",
"main": "dist/scrollerful.cjs",
"name": "scrollerful",
"scripts": {
"build": "npm run js:build && npm run site:assets && astro build",
"docs:commit": "export COMMIT=\"$(git rev-parse HEAD)\" && cd deploy && git add . && git commit -m \"Add build for $COMMIT\"; true",
"docs:publish": "npm run build && npm run docs:commit && npm run deploy && npm run docs:push",
"docs:push": "cd deploy && git push origin",
"js:build": "node bin/build-js.mjs",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev": "astro dev",
"deploy": "rsdeploy -w",
"deploy:dryrun": "rsdeploy",
"preview": "astro preview",
"site:assets": "mkdir -p public/scrollerful && cp dist/scrollerful-auto.min.js public/scrollerful/script.js && cp .build/js/scrollerful/demo.js public/scrollerful/demo.js",
"start": "npm run dev",
"test": "tsx ./node_modules/jasmine/bin/jasmine.js",
"typecheck": "tsc --noEmit",
"version": "npm run build && git add dist"
},
"type": "module",
"version": "1.2.1",
"allowScripts": {
"esbuild@0.28.1": true,
"fsevents@2.3.3": true,
"sharp@0.34.5": true
}
}