forked from microsoft/maker.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 3.88 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 3.88 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "makerjs",
"version": "0.9.78",
"description": "Maker.js, a Microsoft Garage project, is a JavaScript library for creating and sharing modular line drawings for CNC and laser cutters.",
"main": "index.js",
"scripts": {
"build-jscad-csg": "browserify -p licensify -r @jscad/csg -o external/jscad/csg.js",
"build-jscad-stl": "browserify -p licensify -r @jscad/stl-serializer --ignore @jscad/csg -o external/jscad/stl-serializer.js",
"compile-playground": "tsc -p playground && tsc -p playground/worker",
"cat-browser": "cat target/header.txt target/js/browser.js > target/js/browser.maker.js && rm target/js/browser.js",
"cat-node": "cat target/header.txt target/js/node.js target/node-requires.js > target/js/node.maker.js && rm target/js/node.js",
"version-tsd": "node ./target/version-tsd.js > index.d.ts && rm target/maker.d.ts",
"target-node-platform": "cd target && mv maker.js js/node.js && cd ..",
"target-browser-platform": "browserify -p licensify --ignore buffer -r ./target/js/node.js:makerjs -o ./target/js/browser.js",
"version-inside": "node ./target/version-inside.js",
"build-debug": "tsc",
"project": "typedoc ./src --json ./target/project.json",
"gen-cascades": "npm run project && node ./target/cascadable.js > ./src/core/cascades.ts",
"prebuild": "npm run gen-cascades",
"build": "tsc -p target && npm run version-tsd && npm run version-inside && npm run target-node-platform && npm run target-browser-platform && npm run cat-browser && npm run cat-node && mv target/js/node.maker.js ./index.js && npm run compile-playground",
"predocs": "rm -r -f ./docs/api",
"docs": "typedoc ./src --excludeExternals --mode file --entryPoint MakerJs --readme none --theme ./docgen/typedoc-theme --out ./docs/api",
"start": "http-server -o -p 8020",
"test": "mocha"
},
"maintainers": [
{
"name": "Dan Marshall",
"email": "danmar@microsoft.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/maker.js.git"
},
"keywords": [
"Maker",
"CAD",
"2D",
"3D",
"OpenJScad",
"OpenSCAD",
"vector",
"drawing",
"point",
"points",
"path",
"model",
"arc",
"circle",
"line",
"triangle",
"outline",
"bezier",
"quadratic",
"cubic",
"curve",
"ellipse",
"polygon",
"rectangle",
"square",
"star",
"dome",
"bolt",
"holes",
"oval",
"belt",
"ring",
"slot",
"kerf",
"shape",
"font",
"geometry",
"trigonometry",
"boolean",
"chain",
"distort",
"dogbone",
"fillet",
"intsersect",
"intsersection",
"measure",
"mirror",
"rotate",
"scale",
"SVG",
"STL",
"DXF",
"CNC",
"PDF",
"laser",
"plasma",
"cutter",
"water jet"
],
"author": "Dan Marshall / Microsoft Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Microsoft/maker.js/issues"
},
"homepage": "https://github.com/Microsoft/maker.js",
"devDependencies": {
"@jscad/csg": "^0.3.7",
"@jscad/stl-serializer": "^0.1.0",
"@types/codemirror": "0.0.38",
"@types/graham_scan": "^1.0.28",
"@types/marked": "^0.0.28",
"@types/text-encoding": "^0.0.30",
"browserify": "^13.3.0",
"http-server": "^0.10.0",
"licensify": "^3.1.2",
"mocha": "^3.4.2",
"pretty-camel": "0.0.8",
"sort-keys": "^1.1.2",
"typedoc": "^0.7.1",
"typescript": "^2.4.2"
},
"dependencies": {
"@types/bezier-js": "^0.0.6",
"@types/node": "^7.0.5",
"@types/opentype.js": "^0.0.0",
"@types/pdfkit": "^0.7.34",
"bezier-js": "^2.1.0",
"clone": "^1.0.2",
"graham_scan": "^1.0.4"
},
"files": [
"external/jscad/csg.d.ts",
"external/jscad/io.d.ts",
"external/jscad/stl-serializer.d.ts",
"target/js/browser.maker.js",
"index.d.ts",
"index.js"
]
}