-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 KB
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
{
"name": "stylelint-transform-function-no-whitespace",
"version": "1.0.0",
"description": "",
"keywords": [
"stylelint",
"stylelint-plugin",
"css-variables",
"scss-variables",
"postcss",
"csslint",
"lint",
"linter",
"transform-function",
"css-transform-function"
],
"author": "Loh Qiao Wen <loh.qwen@gmail.com>",
"license": "MIT",
"repository": "qwloh/stylelint-transform-function-no-whitespace",
"type": "module",
"files": [
"./dist/index.mjs",
"./dist/index.cjs"
],
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "swc index.ts -o dist/index.mjs && swc index.ts -o dist/index.cjs -C module.type=commonjs",
"test": "vitest"
},
"peerDependencies": {
"stylelint": "15.x || 16.x"
},
"engines": {
"node": ">=18.12.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.8.0",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.3",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-plugin-markdown": "^5.0.0",
"stylelint": "^16.5.0",
"stylelint15": "npm:stylelint@^15.11.0",
"stylelint16": "npm:stylelint@^16.5.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}