-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "@rushstack/heft-sass-load-themed-styles-plugin",
"version": "1.2.7",
"description": "Heft plugin that connects to heft-sass-plugin and replaces load-themed-styles theme expressions with standard CSS variables",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "heft-plugins/heft-sass-load-themed-styles-plugin"
},
"homepage": "https://rushstack.io/pages/heft/overview/",
"license": "MIT",
"scripts": {
"build": "heft build --clean",
"start": "heft test --clean --watch",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"peerDependencies": {
"@rushstack/heft": "^1.2.7"
},
"dependencies": {
"@microsoft/load-themed-styles": "workspace:*"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"@rushstack/heft-sass-plugin": "workspace:*",
"local-node-rig": "workspace:*",
"eslint": "~9.37.0"
},
"exports": {
"./lib/*": {
"types": "./lib-dts/*.d.ts",
"node": "./lib-commonjs/*.js",
"import": "./lib-esm/*.js",
"require": "./lib-commonjs/*.js"
},
"./heft-plugin.json": "./heft-plugin.json",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"lib/*": [
"lib-dts/*"
]
}
},
"sideEffects": false
}