-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.96 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
{
"name": "esbuild-style-loader",
"version": "0.3.4",
"license": "MIT",
"description": "A style loader for esbuild, support for CSS, SCSS, LESS, Stylus, and CSS Modules.",
"homepage": "https://github.com/noyobo/esbuild-style-loader",
"files": [
"lib"
],
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
}
}
},
"repository": {
"type": "git",
"url": "git@github.com:noyobo/esbuild-style-loader.git"
},
"keywords": [
"esbuild",
"esbuild-loader",
"esuild-css-modules"
],
"dependencies": {
"browserslist": "^4.24.3",
"colors": "1.4.0",
"deepmerge": "^4.3.1",
"less": "^4.2.1",
"less-plugin-module-resolver": "^1.0.3",
"less-plugin-npm-import": "^2.1.0",
"lightningcss": "^1.28.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/fs-extra": "^11.0.4",
"@types/less": "^3.0.7",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"change-case": "^5.4.4",
"conventional-changelog-cli": "^5.0.0",
"esbuild": "^0.23.1",
"fs-extra": "^11.2.0",
"less-test-module": "^0.0.10",
"query-string": "^9.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.83.0",
"standard-version": "^9.5.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"esbuild": "*"
},
"scripts": {
"test": "vitest --run",
"test:html": "OUTPUT_HTML=1 vitest --run",
"build": "tsup",
"prepublishOnly": "npm run build",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}