generated from qq15725/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 1.92 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
{
"name": "modern-gif",
"type": "module",
"version": "2.0.3",
"packageManager": "[email protected]",
"description": "Fastest GIF decoder / encoder. using TypeScript.",
"author": "wxm",
"license": "MIT",
"homepage": "https://github.com/qq15725/modern-gif",
"repository": {
"type": "git",
"url": "git+https://github.com/qq15725/modern-gif.git"
},
"bugs": {
"url": "https://github.com/qq15725/modern-gif/issues"
},
"keywords": [
"gif",
"encoder",
"decoder"
],
"sideEffects": false,
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./worker": {
"types": "./types/worker.d.ts",
"require": "./dist/worker.js",
"import": "./dist/worker.js"
},
"./*": "./*"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"browser": "dist/index.js",
"typesVersions": {
"*": {
"*": [
"./types/*",
"./types/index.d.ts"
]
}
},
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite docs",
"lint": "eslint src",
"test": "vitest --no-threads --no-isolate",
"build:worker": "vite build --config vite.worker.config.ts",
"build": "vite build && pnpm build:worker && tsc --project tsconfig.build.json",
"build:docs": "pnpm build:worker && vite build docs",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"release": "bumpp package.json --commit \"release: v%s\" --push --all --tag"
},
"devDependencies": {
"@qq15725/eslint-config": "^1.1.0",
"@types/dom-webcodecs": "^0.1.7",
"@types/node": "^18.16.12",
"bumpp": "^8.2.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.40.0",
"typescript": "^4.9.5",
"vite": "^4.3.7",
"vitest": "^0.31.1"
},
"dependencies": {
"modern-palette": "^2.0.0"
}
}