-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathpackage.json
31 lines (31 loc) · 793 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
{
"name": "@ts-morph/main",
"private": true,
"version": "0.0.0",
"description": "Main github repo for ts-morph packages.",
"scripts": {
"setup": "npm install && npm run build",
"build": "npm run --workspaces build",
"build:deno": "npm run --workspaces build:deno",
"test": "npm run --workspaces test",
"format": "dprint fmt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dsherret/ts-morph.git"
},
"author": "David Sherret",
"license": "MIT",
"bugs": {
"url": "https://github.com/dsherret/ts-morph/issues"
},
"homepage": "https://github.com/dsherret/ts-morph#readme",
"workspaces": [
"packages/common",
"packages/bootstrap",
"packages/ts-morph"
],
"devDependencies": {
"dprint": "^0.46.3"
}
}