-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@cheese-grinder/stencil-sass-alias",
"version": "0.2.4",
"scripts": {
"prebuild": "rimraf -rf ./dist ./build ./config",
"build": "tsc -p . && rollup -c rollup.config.mjs",
"format": "biome format",
"format:fix": "biome format --write",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"prepare": "git config core.hooksPath .githooks"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"stencil",
"sass",
"alias",
"transform"
],
"author": "https://github.com/CheeseGrinder",
"license": "MIT",
"description": "StencilJS sass alias plugin",
"homepage": "https://github.com/CheeseGrinder/stencil-sass-alias#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CheeseGrinder/stencil-sass-alias.git"
},
"bugs": {
"url": "https://github.com/CheeseGrinder/stencil-sass-alias/issues"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@stencil/sass": "~3.0.12",
"@types/node": "~20.14.7",
"audit-ci": "~7.0.1",
"rimraf": "~5.0.7",
"rollup": "~4.18.0",
"typescript": "~5.4.5"
},
"peerDependencies": {
"@stencil/sass": ">= 3.x.x"
}
}