-
Notifications
You must be signed in to change notification settings - Fork 192
/
package.json
72 lines (72 loc) · 1.79 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
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
{
"name": "jcanvas",
"title": "jCanvas",
"description": "jCanvas brings jQuery's powerful syntax and capability to the HTML5 canvas. Quickly create canvas-based apps that can utilize layers, animations, events, and much more. jCanvas works on all modern browsers and platforms, including iOS and Android.",
"version": "23.0.0",
"main": "dist/umd/jcanvas.min.js",
"module": "dist/esm/jcanvas.min.js",
"types": "dist/esm/jcanvas.min.d.ts",
"scripts": {
"build": "rollup -c",
"prepare": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint src/*.ts && tsc --noEmit"
},
"homepage": "https://projects.calebevans.me/jcanvas/",
"author": "Caleb Evans",
"repository": {
"type": "git",
"url": "git+https://github.com/caleb531/jcanvas.git"
},
"keywords": [
"canvas",
"html5",
"jquery",
"events",
"animation",
"jquery-plugin"
],
"bugs": {
"url": "https://github.com/caleb531/jcanvas/issues"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@types/jquery": "^3.5.30",
"esbuild": "^0.21.4",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^10.3.10",
"globals": "^15.9.0",
"jquery": "^3.7.1",
"prettier": "^3.2.5",
"qunit": "^2.21.0",
"rollup": "^4.17.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-esbuild": "^6.1.1",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.1.0"
},
"peerDependencies": {
"jquery": ">=1.9.0"
},
"pnpm": {
"overrides": {
"trim-newlines@<3.0.1": ">=3.0.1"
}
},
"autoupdate": {
"source": "npm",
"target": "jcanvas",
"fileMap": [
{
"basePath": "dist",
"files": [
"**/*"
]
}
]
}
}