forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 904 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": "heft-example-plugin-02",
"description": "This is an example heft plugin that taps the hooks exposed from heft-example-plugin-01",
"version": "1.0.0",
"private": true,
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "heft build --clean",
"start": "heft build-watch",
"_phase:build": "heft run --only build -- --clean"
},
"peerDependencies": {
"heft-example-plugin-01": "workspace:*"
},
"peerDependenciesMeta": {
"heft-example-plugin-01": {
"optional": true
}
},
"devDependencies": {
"@rushstack/eslint-config": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/heft-lint-plugin": "workspace:*",
"@rushstack/heft-typescript-plugin": "workspace:*",
"@types/node": "14.18.36",
"eslint": "~8.7.0",
"heft-example-plugin-01": "workspace:*",
"typescript": "~5.0.4"
}
}