-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.27 KB
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
{
"name": "gofigurejs",
"version": "0.0.4",
"description": "Animated hand-drawn-style SVG drawings of arrows, boxes, circles and text in HTML5, built on Raphaël.",
"main": "dist/gofigure.js",
"types": "dist/gofigure.d.ts",
"exports": {
".": {
"types": "./dist/gofigure.d.ts",
"default": "./dist/gofigure.js"
}
},
"files": [
"dist",
"Readme.md",
"LICENSE"
],
"scripts": {
"build": "tsc && npm run build:browser",
"build:browser": "esbuild src/browser.ts --bundle --format=iife --outfile=dist/gofigure.browser.js",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"svg",
"raphael",
"animation",
"drawing",
"diagram",
"sketch",
"arrows",
"boxes"
],
"author": "Erlend Oftedal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eoftedal/gofigure.git"
},
"bugs": {
"url": "https://github.com/eoftedal/gofigure/issues"
},
"homepage": "https://github.com/eoftedal/gofigure#readme",
"dependencies": {
"jquery": "^3.7.1",
"raphael": "^2.3.0"
},
"devDependencies": {
"@types/jquery": "^3.5.30",
"esbuild": "^0.23.1",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
}
}