-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 987 Bytes
/
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
{
"name": "@qnp/lus",
"version": "0.4.1",
"description": "Command-line formatting of <style lang='stylus'> in Vue SFC files using Stylus Supremacy",
"main": "dist/cli.js",
"bin": {
"lus": "dist/cli.js"
},
"scripts": {
"test": "vitest --run",
"coverage": "vitest --coverage",
"release": "make release",
"build": "tsc --outDir dist"
},
"keywords": [
"vue",
"sfc",
"stylus",
"lint",
"pretty",
"format",
"stylus-supremacy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/qnp/lus.git"
},
"homepage": "https://github.com/qnp/lus#readme",
"author": "François Risoud",
"license": "MIT",
"type": "module",
"engine": {
"node": ">=16"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "^22.6.1",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"dependencies": {
"commander": "^9.0.0",
"glob": "^7.2.0",
"stylus-supremacy": "^4.0.0"
}
}