-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.26 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
{
"name": "postcss-react-strict-dom",
"version": "0.0.6",
"description": "PostCSS plugin for React Strict DOM",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-react-strict-dom"
],
"type": "module",
"files": [
"dist",
"src"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup-node"
},
"author": "Tsubasa Sakai <[email protected]>",
"license": "MIT",
"repository": "javascripter/postcss-react-strict-dom",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"postcss": "*",
"react-strict-dom": "*"
},
"devDependencies": {
"eslint": "^9.14.0",
"postcss": "*",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended"
]
},
"dependencies": {
"fast-glob": "^3.3.2",
"glob-parent": "^6.0.2",
"is-glob": "^4.0.3"
}
}