-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.13 KB
/
package.json
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": "pod-os",
"version": "0.1.0",
"description": "Personal Online Data Operating System",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"dev:core": "npm run build:watch --workspace core",
"dev:elements": "npm start --workspace elements",
"dev:contacts": "npm start --workspace contacts",
"dev:server": "npm start --workspace dev-solid-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pod-os/pod-os.git"
},
"keywords": [
"Solid",
"PodOS"
],
"author": {
"name": "Angelo Veltens",
"email": "[email protected]",
"url": "https://angelo.veltens.org/profile/card#me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pod-os/pod-os/issues"
},
"homepage": "https://github.com/pod-os/pod-os#readme",
"devDependencies": {
"prettier": "^3.2.5"
},
"workspaces": [
"core",
"elements",
"dev-solid-server",
"contacts"
]
}