-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1020 Bytes
/
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
{
"name": "p5.websocket",
"version": "1.1.3",
"description": "A tiny p5.js websocket library.",
"repository": "https://github.com/abachman/p5.websocket.git",
"author": "Adam Bachman",
"license": "MIT",
"private": false,
"//1": "parcel 2 configuration",
"browserslist": "> 0.5%, last 2 versions, not dead",
"source": "src/index.js",
"main": "dist/p5.websocket.min.js",
"development": "example/p5.websocket.js",
"targets": {
"main": {},
"development": {}
},
"scripts": {
"dev": "parcel watch --target development",
"build": "parcel build --target main",
"lint": "eslint --fix",
"test": "jest",
"serve": "npx serve example/"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"babel-jest": "^29.6.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.0.1",
"ws": "^8.17.1"
},
"dependencies": {
"@swc/helpers": "^0.5.1",
"debug": "^4.3.4",
"eventemitter3": "^4.0.0",
"parcel": "^2.10.3"
}
}