-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.77 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
{
"name": "postcss-comments",
"version": "1.0.0",
"description": "Postcss plugin to prepend or append comments to CSS rules",
"repository": "[email protected]:elchininet/postcss-comments.git",
"author": "ElChiniNet",
"license": "Apache-2.0",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"comments"
],
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": {
"types": "./index.d.ts",
"default": "./index.js"
},
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
}
}
},
"files": [
"esm/**/*",
"index.d.ts",
"index.js"
],
"scripts": {
"test": "jest --clearCache && jest --verbose",
"lint": "eslint src/**/*.ts",
"clean": "./scripts/clean.sh",
"copy": "./scripts/copy.sh",
"modify-dts": "replace-in-file --configFile=config.replace.json",
"build": "pnpm clean && rollup --config rollup.config.js --bundleConfigAsCjs && pnpm copy && pnpm modify-dts",
"prepare": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"version": "git add .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.8",
"eslint": "^9.21.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"postcss": "^8.5.3",
"replace-in-file": "^8.3.0",
"rimraf": "^6.0.1",
"rollup": "^4.34.9",
"rollup-plugin-ts": "^3.4.5",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2",
"typescript-eslint": "^8.25.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}