-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.29 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.29 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
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
81
82
83
84
85
{
"name": "buttplug",
"version": "4.0.1",
"description": "Buttplug Client Implementation for Typescript/Javascript",
"homepage": "https://github.com/buttplugio/buttplug-js/",
"repository": {
"type": "git",
"url": "git+https://github.com/buttplugio/buttplug-js.git"
},
"author": "Nonpolynomial Labs, LLC",
"keywords": [
"teledildonics",
"hardware"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/buttplugio/buttplug-js/issues"
},
"main": "./dist/main/src/index.js",
"types": "./dist/main/src/index.d.ts",
"scripts": {
"build": "trash dist dist-bundle && yarn build:all",
"build:all": "yarn build:main && yarn build:web",
"build:main": "tsc -p tsconfig.json",
"build:doc": "typedoc --options typedocconfig.js --out doc ./src/index.ts",
"build:web": "vite build",
"pretest": "yarn build:main",
"test": "jest tests/*",
"web-test": "jest web-tests/test-web-library.ts",
"web-test-ci": "jest --runInBand web-tests/test-web-library.ts"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/commander": "^2.12.5",
"@types/expect-puppeteer": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/node": "^24.10.1",
"@types/uuid-parse": "^1.0.2",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"copyfiles": "^2.4.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-plugin-node": "^11.1.0",
"gts": "^6.0.2",
"jest": "^30.2.0",
"mock-socket": "^9.3.1",
"pkg": "^5.8.1",
"tmp": "^0.2.5",
"trash": "^10.0.0",
"trash-cli": "^7.0.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.5.4",
"yarn": "^1.22.22"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"<rootDir>/tests/**/test-*.ts",
"<rootDir>/web-tests/**/test-*.ts"
],
"coverageDirectory": "./coverage/",
"coverageReporters": [
"json"
],
"collectCoverage": true
}
}