-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
36 lines (36 loc) · 922 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
{
"name": "p5.easycam",
"version": "1.2.3",
"description": "A p5.js library for easy 3D camera control.",
"main": "p5.easycam.js",
"directories": {
"example": "examples"
},
"scripts": {
"lint": "eslint",
"test": "echo \"TBD\" && exit 1",
"generate-types": "jsdoc -t node_modules/tsd-jsdoc/dist p5.easycam.js -d .",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/freshfork/p5.EasyCam"
},
"author": "p5.EasyCam authors",
"license": "MIT",
"bugs": {
"url": "https://github.com/freshfork/p5.EasyCam/issues"
},
"homepage": "https://freshfork.github.io/p5.EasyCam",
"keywords": ["p5.js", "camera", "webgl", "3d"],
"dependencies": {
"jsdoc": "^3.6.10",
"tsd-jsdoc": "^2.5.0"
},
"devDependencies": {
"@types/p5": "^1.4.3",
"eslint": "^8.6.0",
"eslint-config-google": "^0.14.0",
"typescript": "^4.9.4"
}
}