-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "meowclient",
"version": "3.1.0",
"description": "Client for Scratch in JS",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --minify --dts",
"build:watch": "tsup src/index.ts --format esm --minify --dts --watch",
"prepare": "tsup src/index.ts --format esm --minify --dts",
"test": "tap --node-arg=--experimental-specifier-resolution=node",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.2",
"@types/ws": "^8.5.6",
"prettier": "^3.0.3",
"tap": "^18.4.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"form-data-encoder": "^3.0.0",
"formdata-node": "^5.0.1",
"node-html-parser": "^6.1.10",
"ws": "^8.14.2"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"engines": {
"node": ">=18"
},
"engineStrict": true,
"sideEffects": false
}