-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "prettier-plugin-stylus",
"version": "0.1.0",
"description": "Prettier plugin for Stylus",
"main": "dist/index.js",
"packageManager": "[email protected]",
"files": [
"dist/!(*.js.map)"
],
"scripts": {
"build": "esbuild src/parser.ts src/index.ts src/utils.ts --sourcemap --format=cjs --outdir=dist",
"format": "prettier . --write",
"example": "pnpm build && prettier --plugin . ",
"typeCheck": "tsc --noEmit",
"prepublishOnly": "pnpm typeCheck && pnpm build",
"bump": "bumpp --commit --tag --push",
"test": "vitest"
},
"homepage": "https://github.com/lsdsjy/prettier-plugin-stylus",
"repository": {
"type": "git",
"url": "https://github.com/lsdsjy/prettier-plugin-stylus.git"
},
"keywords": [
"prettier",
"stylus",
"plugin"
],
"author": {
"name": "lsdsjy",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"stylus": "^0.57.0"
},
"peerDependencies": {
"prettier": "*"
},
"devDependencies": {
"@types/prettier": "^2.6.0",
"@types/stylus": "^0.48.37",
"bumpp": "^8.2.1",
"esbuild": "^0.14.38",
"prettier": "^2.7.1",
"tslib": "^2.4.0",
"typescript": "^4.6.3",
"vitest": "^0.22.1"
}
}