-
Notifications
You must be signed in to change notification settings - Fork 297
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "makerjs-dev",
"private": true,
"version": "1.0.0",
"description": "Maker.js monorepo",
"main": "index.js",
"workspaces": [
"docs/demos",
"packages/*"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"directories": {
"doc": "docs"
},
"devDependencies": {
"browserify": "^17.0.0",
"fontkit": "^2.0.4",
"licensify": "^3.1.3",
"mocha": "^10.0.0",
"opentype.js": "^1.1.0",
"typescript": "^4.1.3",
"typescript-json-schema": "^0.53.1"
},
"scripts": {
"build-tools": "npm run build-tools --workspaces --if-present",
"build": "npx -p typescript@4.1.3 -p typedoc@0.18.0 npm run build --workspaces --if-present",
"demo": "npm run demo --workspaces --if-present",
"docs": "npx -p typescript@4.1.3 -p typedoc@0.18.0 npm run docs --workspaces --if-present",
"start": "npx http-server -p 8020 -o /docs/playground/",
"test": "npm install && npm run build && npm run build-tools && npm run test --workspaces --if-present && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/maker.js.git"
},
"author": "Dan Marshall",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Microsoft/maker.js/issues"
},
"homepage": "https://github.com/Microsoft/maker.js#readme"
}