-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 2.31 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
{
"name": "canvas-scroll-clip",
"version": "1.3.2",
"description": "Canvas based image sequence scroll animation. Zero dependencies.",
"author": "Mantas Skripkauskas (https://github.com/m5kr1pka)",
"homepage": "https://github.com/m5kr1pka/canvas-scroll-clip",
"repository": {
"type": "git",
"url": "https://github.com/m5kr1pka/canvas-scroll-clip.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/m5kr1pka/canvas-scroll-clip/issues"
},
"keywords": [
"web",
"fron-end",
"canvas",
"animation",
"scroll",
"html5",
"typescript"
],
"main": "./dist/esbuild/main.esm.js",
"module": "./dist/esbuild/main.esm.js",
"browser": "./dist/esbuild/main.esm.js",
"types": "./dist/tsc/main.d.ts",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts --out typedoc-docs",
"build": "tsc -p tsconfig.json",
"build-all": "yarn clean && yarn build && yarn esbuild-esm",
"esbuild-esm": "esbuild src/main.ts --format=esm --target=es6 --bundle --sourcemap=external --outfile=dist/esbuild/main.esm.js",
"esbuild-browser:dev": "esbuild src/main.ts --format=esm --bundle --outfile=dist/esbuild/main.js",
"esbuild-browser:watch": "esbuild src/main.ts --format=esm --bundle --watch --outfile=dist/esbuild/main.js",
"preview": "esbuild src/main.ts --format=esm --servedir=www --outdir=www/js --bundle",
"preview:docs": "esbuild --servedir=docs",
"post-update": "yarn upgrade --latest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir docs"
},
"devDependencies": {
"@babel/core": "^7.15.4",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/html": "^6.3.8",
"@types/jest": "^28.1.6",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-loader": "^8.2.2",
"esbuild": "^0.14.51",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"jsdom": "^20.0.0",
"sb": "^6.3.8",
"ts-jest": "^28.0.7",
"ts-node": "^10.1.0",
"tslib": "^2.3.1",
"typedoc": "^0.23.9",
"typescript": "^4.3.5"
}
}