-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
68 lines (68 loc) · 1.73 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@stencil/sass",
"version": "3.1.7",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"files": [
"dist/"
],
"scripts": {
"prebuild": "rimraf ./dist",
"prettier": "npm run prettier.base -- --write",
"prettier.base": "prettier --cache 'src/**/*.ts'",
"prettier.dry-run": "npm run prettier.base -- --list-different",
"build": "npm run prebuild && npm run rollup",
"watch": "npm run rollup -- --watch",
"rollup": "rollup -c rollup.config.mjs",
"version": "npm run build",
"release": "np",
"test": "jest",
"test.ci": "npm run test && npm run prettier.dry-run",
"test.watch": "jest --watch"
},
"peerDependencies": {
"@stencil/core": ">=2.0.0 || >=3.0.0-beta.0 || >= 4.0.0-beta.0 || >= 4.0.0"
},
"devDependencies": {
"@ionic/prettier-config": "^4.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@stencil/core": "^4.27.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"jest": "^29.7.0",
"np": "^10.2.0",
"prettier": "^3.5.2",
"rimraf": "^6.0.1",
"rollup": "^4.34.8",
"sass-embedded": "^1.85.1",
"terser": "^5.39.0",
"ts-jest": "^29.2.6",
"typescript": "~5.7.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stenciljs/sass.git"
},
"author": "Ionic Team",
"homepage": "https://stenciljs.com/",
"description": "The Stencil Sass Plugin",
"keywords": [
"stencil",
"sass"
],
"jest": {
"preset": "ts-jest"
},
"prettier": "@ionic/prettier-config",
"volta": {
"node": "20.15.1",
"npm": "10.8.3"
}
}