-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "@mediamonks/fast-image-sequence",
"version": "1.0.3",
"description": "The fast-image-sequence-renderer is a powerful package that allows you to display a sequence of images at a high frame rate on your website. Zero dependencies.",
"keywords": [
"image sequence",
"flip book",
"animation",
"canvas",
"fast",
"optimized",
"performance",
"sequence",
"image",
"renderer",
"360",
"product"
],
"repository": "[email protected]:mediamonks/fast-image-sequence.git",
"author": "Reinder Nijhoff <[email protected]>",
"license": "MIT",
"type": "module",
"main": "./dist/fast-image-sequence.umd.cjs",
"module": "./dist/fast-image-sequence.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./dist/fast-image-sequence.js",
"require": "./dist/fast-image-sequence.umd.cjs",
"types": "./index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "npm run clean && npm run build:ts",
"build:ts": "vite build",
"clean": "shx rm -rf dist node_modules/.cache/.tsbuildinfo",
"typecheck": "tsc --project tsconfig.json --noEmit --noUnusedLocals",
"prepare-publish": "tsx ./scripts/preparePublish.ts"
},
"devDependencies": {
"@types/shelljs": "^0.8.14",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"tsx": "^4.6.2",
"typescript": "^5.0.4",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.0.3"
},
"engines": {
"node": ">=16.0.0"
}
}