-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "postcss-scope",
"version": "1.7.4",
"description": "A small plugin to allow you to scope your css with a custom selector\n",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "pnpm build",
"test": "jest"
},
"keywords": [
"postcss",
"scope",
"postcss-scope",
"tailwindcss",
"tailwind"
],
"repository": {
"type": "git",
"url": "https://github.com/jackall3n/postcss-scope.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/jackall3n/postcss-scope/issues"
},
"homepage": "https://github.com/jackall3n/postcss-scope#readme",
"author": "Jack Allen <[email protected]>",
"license": "ISC",
"dependencies": {
"postcss": "^8.4.48",
"postcss-selector-parser": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}