forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 906 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 906 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
32
33
34
35
{
"name": "api-documenter-scenarios",
"description": "Building this project is a regression test for api-documenter",
"version": "1.0.0",
"private": true,
"types": "./dist/internal/some-fake-file.d.ts",
"exports": {
"./lib/*": {
"types": "./lib-dts/*.d.ts",
"import": "./lib-esm/*.js",
"require": "./lib-commonjs/*.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"lib/*": [
"lib-dts/*"
]
}
},
"scripts": {
"build": "heft build --clean",
"_phase:build": "heft build --clean"
},
"devDependencies": {
"@microsoft/api-documenter": "workspace:*",
"@microsoft/api-extractor": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/node-core-library": "workspace:*",
"eslint": "~9.37.0",
"local-node-rig": "workspace:*",
"run-scenarios-helpers": "workspace:*"
}
}