-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 750 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 750 Bytes
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
{
"name": "plata-monorepo",
"private": true,
"version": "0.0.6",
"main": "examples/index.html",
"description": "A 1kb JS library for building user interfaces",
"repository": "https://github.com/albizures/plata.git",
"author": "Jose Albizures <albizures3601@gmail.com>",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean && lerna run clean",
"start": "lerna run start",
"build": "lerna run build",
"test:types": "tsc --noEmit",
"prewatch": "yarn run build --scope @plata/core",
"watch": "yarn lerna run watch --parallel"
},
"workspaces": {
"packages": [
"packages/*",
"examples"
]
},
"dependencies": {
"lerna": "^3.20.2"
},
"devDependencies": {
"typescript": "^3.8.2"
}
}