-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
100 lines (100 loc) · 2.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "esbuild-plugin-less",
"version": "1.0.0",
"description": "esbuild plugin for less files",
"repository": "https://github.com/iam-medvedev/esbuild-plugin-less.git",
"homepage": "https://github.com/iam-medvedev/esbuild-plugin-less#readme",
"bugs": "https://github.com/iam-medvedev/esbuild-plugin-less/issues",
"author": "Ilya Medvedev <[email protected]>",
"license": "WTFPL",
"main": "build/cjs.js",
"module": "build/esm.mjs",
"types": "build/src/index.d.ts",
"files": [
"build/*",
"package.json"
],
"scripts": {
"build": "NODE_ENV=production tsx ./scripts/build.ts",
"build:types": "NODE_ENV=production tsc --emitDeclarationOnly --declaration --outDir build",
"dev:example-ts": "tsx ./example/build.ts --ts",
"build:example-ts": "NODE_ENV=production tsx ./example/build.ts --ts",
"dev:example-less": "tsx ./example/build.ts --less",
"build:example-less": "NODE_ENV=production tsx ./example/build.ts --less",
"commit": "yarn git-cz",
"prepare": "husky install",
"types": "tsc --noEmit",
"test": "vitest",
"test:ci": "vitest run --coverage --reporter=junit --outputFile.junit=./coverage.xml"
},
"exports": {
"import": {
"types": "./build/src/index.d.ts",
"default": "./build/esm.mjs"
},
"require": {
"types": "./build/src/index.d.ts",
"default": "./build/cjs.js"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/node": "22.10.0",
"@vitest/coverage-v8": "2.1.5",
"cz-conventional-changelog": "3.3.0",
"esbuild": "0.24.0",
"git-cz": "4.9.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.4.0",
"semantic-release": "24.2.0",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vite": "5.4.11",
"vitest": "2.1.5"
},
"peerDependencies": {
"esbuild": ">=0.14.0 <0.25.0"
},
"resolutions": {
"esbuild": "0.24.0"
},
"dependencies": {
"@types/less": "^3.0.7",
"less": "^4.2.1"
},
"keywords": [
"esbuild",
"plugin",
"less"
],
"volta": {
"node": "22.11.0",
"yarn": "1.22.22"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}