-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.51 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": "@thelabnyc/esbuild-style-plugin",
"version": "1.7.1",
"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 <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/thelabnyc/esbuild-style-plugin"
},
"homepage": "https://gitlab.com/thelabnyc/esbuild-style-plugin",
"license": "ISC",
"dependencies": {
"glob": "^11.0.0",
"postcss": "^8.4.49",
"postcss-modules": "^6.0.1",
"sass": "^1.81.0"
},
"devDependencies": {
"@thelabnyc/standards": "^0.4.1",
"@tsconfig/node20": "^20.1.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/postcss-import": "^14.0.3",
"autoprefixer": "^10.4.20",
"esbuild": "^0.24.0",
"jest": "^29.7.0",
"postcss-import": "^16.1.0",
"postcss-scss": "^4.0.9",
"tailwindcss": "^3.4.15",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typed-scss-modules": "^8.0.1"
}
}