-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 899 Bytes
/
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
{
"name": "pidoc",
"private": true,
"workspaces": [
"packages/*"
],
"author": "smapiot",
"license": "MIT",
"homepage": "https://pidoc.js.org",
"repository": {
"type": "git",
"url": "https://github.com/smapiot/pidoc.git"
},
"bugs": {
"url": "https://github.com/smapiot/pidoc/issues"
},
"scripts": {
"start": "lerna run start --scope @pidoc/example-app --stream",
"build": "lerna run build --scope @pidoc/example-app --stream",
"dev": "lerna run start --scope @pidoc/example-doclet --stream",
"ci:deploy": "gh-pages -d packages/example-app/dist/release",
"ci:version": "node tools/changelog-version.js"
},
"devDependencies": {
"@types/node": "^18",
"gh-pages": "^6",
"lerna": "^8",
"prettier": "^3",
"tslint": "^5",
"tslint-config-prettier": "^1",
"tslint-plugin-prettier": "^2",
"typescript": "^5"
}
}