forked from qzb/is-animated
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.66 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@frsource/is-animated",
"version": "1.0.4",
"description": "Detects animated images in browser & node. Supports GIT, APNG & WebP",
"sideEffects": false,
"exports": {
"default": "./src/index.mjs",
"types": "./dist/index.d.mts"
},
"main": "./src/index.mjs",
"types": "./dist/index.d.mts",
"module": "./dist/index.mjs",
"unpkg": "./dist/is-animated.umd.js",
"scripts": {
"typecheck": "tsc --project tsconfig.json --noEmit",
"start": "pnpm clean && concurrently \"microbundle watch -i ./src/index.mjs -o docs -f umd\" \"node ./scripts/build-docs.mjs --watch\" \"serve docs\"",
"build": "pnpm clean && microbundle -i ./src/index.mjs -o dist -f umd --no-sourcemap && microbundle -i ./src/index.mjs -o docs -f umd && node ./scripts/build-docs.mjs && tsc --project tsconfig.json --declaration --emitDeclarationOnly && node ./scripts/postbuild.mjs",
"lint": "eslint . --max-warnings 0 && prettier --check .",
"fix": "eslint . --fix && prettier --write .",
"release": "semantic-release",
"release:ci": "pnpm release --yes",
"release:test": "pnpm release --no-git-tag-version --no-push --skip-npm",
"clean": "pnpm rimraf dist docs",
"test": "pnpm vitest",
"test:ci": "pnpm vitest run --coverage",
"coverage": "pnpm vitest --coverage"
},
"homepage": "https://www.frsource.org/is-animated",
"bugs": {
"url": "https://github.com/FRSOURCE/is-animated/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FRSOURCE/is-animated.git"
},
"keywords": [
"animated",
"animated gif",
"animated image",
"animated png",
"animated webp",
"animation",
"apng",
"gif",
"png",
"webp",
"lightweight",
"nodejs",
"node",
"browser"
],
"author": "Jakub Freisler <jakub@frsource.org>",
"license": "MIT",
"devDependencies": {
"@frsource/eslint-config": "1.33.0",
"@frsource/prettier-config": "1.21.0",
"@frsource/semantic-release-config": "1.37.0",
"@types/node": "^20.17.12",
"@vitest/coverage-v8": "^2.1.8",
"chokidar": "^4.0.3",
"concurrently": "^9.1.2",
"eslint": "9.17.0",
"fast-glob": "^3.3.3",
"globals": "^15.14.0",
"happy-dom": "16.3.0",
"microbundle": "0.15.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"semantic-release": "24.2.1",
"serve": "14.2.4",
"shiki": "1.26.1",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@8.15.8",
"files": [
"dist",
"src/*.mjs",
"src/*/*.mjs",
"package.json"
],
"engines": {
"node": ">=20.0.0"
},
"funding": "https://buymeacoffee.com/frsource"
}