-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.85 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.85 KB
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
{
"name": "speedcontrol-util",
"version": "0.6.1",
"description": "Node.js package with utilities to help you code NodeCG bundles that interface with the nodecg-speedcontrol bundle.",
"keywords": [
"helper",
"nodecg",
"nodecg-speedcontrol",
"speedcontrol",
"util",
"utility"
],
"homepage": "https://github.com/speedcontrol/speedcontrol-util#readme",
"bugs": {
"url": "https://github.com/speedcontrol/speedcontrol-util/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/speedcontrol/speedcontrol-util.git"
},
"license": "MIT",
"author": "zoton2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"autofix": "eslint --fix --ext .ts src",
"build": "tsc -b tsconfig.json",
"clean": "trash node_modules/.cache && trash dist",
"copy-schemas": "trash schemas && shx cp -r node_modules/nodecg-speedcontrol/schemas schemas",
"copy-types": "trash types && shx cp -r node_modules/nodecg-speedcontrol/src/types types && cd types && shx rm schemas/.eslintrc.js .eslintrc.js shims-vue.d.ts augment-window.d.ts VueDraggable.d.ts ParseDuration.d.ts tsconfig.json",
"watch": "tsc -b tsconfig.json -w"
},
"dependencies": {
"@nodecg/types": "^2.4.3",
"@types/needle": "^3.3.0",
"clone": "^2.1.2"
},
"devDependencies": {
"@types/clone": "^2.1.4",
"@types/node": "^18.19.70",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"nodecg-speedcontrol": "git+https://git@github.com/speedcontrol/nodecg-speedcontrol.git",
"shx": "^0.3.4",
"trash-cli": "^6.0.0",
"typescript": "^4.9.5"
}
}