-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.72 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": "mediapipe-pose-smooth",
"version": "2.0.0",
"description": "This will remove the jitter and smooth the landmarks given by Mediapipe",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && microbundle --tsconfig ./tsconfig.json",
"dev": "microbundle watch",
"prepare": "husky install",
"lint": "eslint src test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yousufkalim/mediapipe-pose-smooth.git"
},
"keywords": [
"mediapipe",
"pose",
"smooth",
"jitter",
"landmarks"
],
"author": "Yousuf Kalim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yousufkalim/mediapipe-pose-smooth/issues"
},
"homepage": "https://github.com/yousufkalim/mediapipe-pose-smooth#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"commitlint-config-non-conventional": "^1.0.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"microbundle": "^0.15.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.0.3",
"typescript": "*"
}
}