-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.67 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
{
"name": "postcss-assign-layer",
"version": "0.3.0",
"description": "PostCSS plugin to assign a cascade layer to files.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-assign-layer"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --cjsInterop --splitting",
"test": "vitest run --coverage && eslint .",
"test:watch": "vitest",
"prepublishOnly": "pnpm build && pnpm test"
},
"author": "Ian VanSchooten <ian.vanschooten@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DefinedNet/postcss-assign-layer.git"
},
"homepage": "https://github.com/DefinedNet/postcss-assign-layer#readme",
"files": [
"dist"
],
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.ts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"engines": {
"node": ">=12.0.0"
},
"peerDependencies": {
"postcss": "^8.3.0"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/eslint": "^8.56.6",
"@types/node": "^16.18.91",
"@types/prettier": "^2.6.0",
"@vitest/coverage-v8": "^0.34.0",
"c8": "^7.11.3",
"clean-publish": "^3.4.2",
"eslint": "^8.57.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"postcss": "^8.3.11",
"prettier": "^2.6.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"typescript-eslint": "^7.3.1",
"vite": "^4.0.0",
"vitest": "^0.34.0"
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1"
},
"packageManager": "pnpm@8.15.5"
}