-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 3.67 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
{
"name": "touchcontroller",
"version": "4.2.33",
"author": "Pavol Hejný <[email protected]> (https://pavolhejny.com)",
"description": "Touch and mouse controller for web apps and games",
"main": "./dist/main.js",
"types": "./dist/typings/main.d.ts",
"files": [
"dist/**"
],
"scripts": {
"start": "npm run develop",
"build": "rm -rf ./dist && webpack --config webpack.production.config.js",
"develop-samples-server": "node server.js",
"develop-build": "chokidar \"src/**/*.ts\" --initial --kill --debounce 100 -c \"webpack --config ./webpack.development.config.js\"",
"test": "jest --config jestconfig.json",
"lint": "npx eslint \"src/**/*.{ts,tsx}\"",
"lint-fix": "npx eslint \"src/**/*.{ts,tsx}\" --fix",
"lint-watch": "chokidar \"{src,test,samples}/**/*.{ts,json,js,html,css}\" --verbose --command \"npx eslint {path} --fix\"",
"pretty-imports": "npx organize-imports-cli tsconfig.json",
"autofix": "npm run pretty-imports && npm run lint-fix",
"autofix-commit": "git diff --exit-code && npm run autofix && git add src && git commit --allow-empty -m \"Autofixing\"",
"documentation": "echo \"TODO: make typedoc working\"",
"--documentation": "npx typedoc --excludePrivate --hideGenerator --mode file --out docs --name \"TouchController\" ./src",
"documentation-commit": "git diff --exit-code && npm run documentation && git add docs && git commit --allow-empty -m \"TouchController\"",
"generate-main-exports": "ts-node ./scripts/generate-main-exports/generate-main-exports.ts",
"generate-main-exports-commit": "git diff --exit-code && npm run generate-main-exports && npm run autofix && git add src && git commit --allow-empty -m \"Updating exports\"",
"preversion": "npm test && npm run autofix-commit && npm run generate-main-exports-commit && npm run build && npm run documentation-commit",
"postversion": "git push && git push --tags && npm publish",
"update-packages": "npm-check-updates -u && git add ./package.json && git commit -m \"Update packages\" && npm run force-reinstall",
"force-reinstall": "rm ./package-lock.json && rm -rf ./node_modules && npm install && git add ./package-lock.json && git commit -m \"Force reinstall\""
},
"repository": {
"type": "git",
"url": "https://github.com/hejny/touchcontroller"
},
"keywords": [],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/hejny/touchcontroller/issues"
},
"homepage": "https://github.com/hejny/touchcontroller",
"devDependencies": {
"@types/jest": "26.0.15",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "6.19.0",
"chokidar-cli": "2.1.0",
"codecov": "3.8.1",
"destroyable": "0.12.74",
"eslint": "8.56.0",
"express": "4.18.2",
"glob-promise": "3.4.0",
"jest": "29.7.0",
"open": "7.3.0",
"rxjs": "6.6.7",
"serve-index": "1.9.1",
"serve-static": "1.14.1",
"ts-jest": "29.1.1",
"ts-loader": "9.5.1",
"ts-node": "9.0.0",
"type-fest": "4.9.0",
"typescript": "5.3.3",
"update": "0.4.2",
"uuid": "8.3.1",
"waitasecond": "1.11.95",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"xyzt": "5.4.3"
},
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/hejny"
},
{
"type": "github",
"url": "https://github.com/hejny/touchcontroller/blob/main/README.md#%EF%B8%8F-contributing"
}
]
}