-
Notifications
You must be signed in to change notification settings - Fork 682
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 KB
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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@rushstack/rig-package",
"version": "0.7.3",
"description": "A system for sharing tool configurations between projects without duplicating config files.",
"main": "./lib-commonjs/index.js",
"module": "./lib-esm/index.js",
"types": "./dist/rig-package.d.ts",
"exports": {
".": {
"types": "./dist/rig-package.d.ts",
"node": "./lib-commonjs/index.js",
"import": "./lib-esm/index.js",
"require": "./lib-commonjs/index.js"
},
"./lib/*.schema.json": "./lib-commonjs/*.schema.json",
"./lib/*": {
"types": "./lib-dts/*.d.ts",
"node": "./lib-commonjs/*.js",
"import": "./lib-esm/*.js",
"require": "./lib-commonjs/*.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"lib/*": [
"lib-dts/*"
]
}
},
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "libraries/rig-package"
},
"scripts": {
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"jju": "~1.4.0",
"resolve": "~1.22.1"
},
"devDependencies": {
"@rushstack/heft": "1.2.15",
"@types/jju": "1.4.1",
"@types/resolve": "1.20.2",
"ajv": "~8.18.0",
"decoupled-local-node-rig": "workspace:*",
"eslint": "~9.37.0",
"resolve": "~1.22.1"
},
"sideEffects": false
}