-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.4 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.4 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
{
"private": true,
"name": "@toio/root",
"workspaces": [
"packages/*",
"examples/*"
],
"repository": "https://github.com/toio/toio.js",
"author": "Sony Interactive Entertainment Inc.",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:watch": "lerna run build:watch --parallel",
"clean": "lerna run clean",
"docs": "typedoc packages/**/src && touch docs/.nojekyll",
"docs:clean": "rimraf docs",
"docs:serve": "yarn docs:clean && yarn docs && live-server docs",
"docs:deploy": "yarn docs:clean && yarn docs && gh-pages -t -d docs",
"example:id-reader": "node examples/id-reader",
"example:keyboard-control": "node examples/keyboard-control",
"example:chase": "node examples/chase",
"lint": "eslint **/src/**/*.ts",
"release": "lerna publish from-package",
"test": "lerna run test",
"versionup": "lerna version --conventional-commits"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-prettier": "^3.1.0",
"gh-pages": "^2.0.1",
"lerna": "^3.14.1",
"live-server": "^1.2.1",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"typedoc": "^0.16.9",
"typedoc-plugin-lerna-packages": "^0.1.5"
}
}