-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.51 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.51 KB
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": "@thelabnyc/esbuild-style-plugin",
"version": "2.0.0",
"description": "Another esbuild plugin for your styling with CSS,SASS,LESS,STYLUS",
"types": "./dist/index.d.ts",
"main": "./dist/index",
"files": [
"dist"
],
"scripts": {
"check:types": "tsc --noEmit",
"check": "npm run check:types",
"build:css-type-defs": "typed-scss-modules '{./**/*.module.scss,./**/*.module.css}' --exportType=default --nameFormat=none",
"build:dist": "tsc --project tsconfig.publish.json",
"build": "npm run build:css-type-defs && npm run build:dist",
"prepack": "npm run build",
"test-watch": "ts-node ./test/watch/index.ts",
"test": "jest"
},
"author": "thelab <thelabdev@thelab.co>",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/thelabnyc/esbuild-style-plugin"
},
"homepage": "https://gitlab.com/thelabnyc/esbuild-style-plugin",
"license": "ISC",
"dependencies": {
"glob": "^13.0.0",
"postcss": "^8.5.3",
"postcss-modules": "^6.0.1",
"sass": "^1.87.0"
},
"devDependencies": {
"@thelabnyc/standards": "0.5.0",
"@tsconfig/node24": "24.0.4",
"@types/glob": "9.0.0",
"@types/jest": "30.0.0",
"@types/node": "24.12.0",
"@types/postcss-import": "14.0.3",
"autoprefixer": "10.4.27",
"esbuild": "0.27.4",
"jest": "30.3.0",
"postcss-import": "16.1.1",
"postcss-scss": "4.0.9",
"tailwindcss": "3.4.19",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"@thelabnyc/typed-scss-modules": "8.2.4"
}
}