-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "esbuild-stylus-loader",
"version": "0.4.3",
"description": "esbuild plugin for stylus files",
"keywords": [
"esbuild",
"stylus"
],
"author": {
"name": "ym-project",
"email": "ym-project@protonmail.com",
"url": "https://github.com/ym-project"
},
"repository": {
"type": "git",
"url": "https://github.com/ym-project/esbuild-stylus-loader"
},
"homepage": "https://github.com/ym-project/esbuild-stylus-loader#readme",
"bugs": "https://github.com/ym-project/esbuild-stylus-loader/issues",
"license": "MIT",
"main": "npm/cjs.js",
"exports": {
"import": "./npm/esm.mjs",
"require": "./npm/cjs.js"
},
"types": "index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "husky",
"build": "node scripts/build",
"clean": "node scripts/clean",
"lint": "eslint '**/*.{js,ts}'",
"test": "ava --fail-fast -s --verbose",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@types/eslint": "^8.56.12",
"@types/node": "^18.19.50",
"@types/stylus": "^0.48.43",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"ava": "^6.1.3",
"esbuild": "^0.23.1",
"eslint": "^8.57.0",
"eslint-plugin-ava": "^14.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"stylus": "^0.63.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"esbuild": ">=0.9.6",
"stylus": ">=0.52.4"
}
}