-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "ts-whammy",
"version": "1.1.5",
"description": "A modern typescript version of whammy. You can use it to encode images(webp) to webm video.",
"keywords": [
"whammy",
"webp",
"webm"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Akimyou/ts-whammy.git"
},
"scripts": {
"site:dev": "astro dev",
"site:build": "astro build",
"site:preview": "astro preview",
"build:lib": "rm -rf @types libs libs-esm && tsc --build tsconfig.lib.json && tsc --build tsconfig.lib.esm.json",
"prepublishOnly": "npm run build:lib",
"codecov": "codecov",
"test:unit": "jest tests/unit",
"test:performance": "ts-node --project tsconfig.lib.json -r tsconfig-paths/register ./tests/performance/index.spec.ts"
},
"main": "libs/index.js",
"module": "libs-esm/index.js",
"types": "@types/index.d.ts",
"dependencies": {
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/node": "^13.1.4",
"@babel/preset-typescript": "^7.18.6",
"@types/benchmark": "^2.1.2",
"@types/jest": "^29.0.0",
"benchmark": "^2.1.4",
"codecov": "^3.8.3",
"jest-environment-jsdom": "^29.0.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.8.2",
"@astrojs/mdx": "^0.16.0",
"@astrojs/react": "^2.0.2",
"astro": "^2.0.6",
"github-markdown-css": "^5.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}