-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "javascript-canvas",
"version": "1.1.12",
"description": "Рисование с помощью Canvas API @2d",
"main": "index.js",
"exports": {
".": "./index.js"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/eslint/bin/eslint.js .",
"clear": "rm -rf node_modules package-lock.json",
"development": "npm link javascript-std-lib javascript-algebra"
},
"author": "https://github.com/xaota",
"license": "Unlicense",
"keywords": [
"javascript",
"canvas",
"math",
"algebra",
"2d",
"graphics",
"primitive"
],
"dependencies": {
"javascript-algebra": "latest"
},
"devDependencies": {
"@types/node": "^18.11.3",
"eslint": "^8.25.0"
},
"homepage": "https://github.com/xaota/javascript-canvas#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xaota/javascript-canvas.git"
},
"bugs": {
"url": "https://github.com/xaota/javascript-canvas/issues"
}
}