-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "scroll-svg",
"version": "1.5.0",
"description": "A library to make animating svgs on scroll easier.",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"unpkg": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"dev": "vitest",
"test": "vitest run",
"lint": "tsc",
"transpile": "tsup ./src/index.ts --format esm --dts --minify",
"bundle": "webpack",
"build": "pnpm run transpile && pnpm run bundle",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"version": "pnpm changeset",
"release": "pnpm run ci && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanRDT/scroll-svg.git"
},
"keywords": [
"scroll",
"svg",
"animations",
"animate svg",
"svg path",
"draw svg",
"scroll animation"
],
"author": "Daniel Pulber",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanRDT/scroll-svg/issues"
},
"homepage": "https://github.com/DanRDT/scroll-svg#readme",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@swc/core": "^1.10.1",
"@types/jsdom": "^21.1.7",
"jsdom": "^25.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"publishConfig": {
"access": "public"
}
}