-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "@tkulpa/among-us-replay-nodejs",
"version": "0.1.6-alpha",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "Tom Kulpa",
"email": "tekulp@gmail.com",
"url": "https://github.com/tkulpa"
},
"repository": "github:tkulpa/among-us-replay-nodejs",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"prepare": "yarn build",
"dev": "tsc && node dist/index.js replay.aurp",
"start": "node ./dist",
"build": "tsc",
"format": "prettier --write ./",
"run-example": "yarn build && node ./example"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^14.14.21",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"node-p5": "^1.0.3",
"prettier": "2.2.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
}
}