-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.74 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@indentier/plugin-css",
"description": "Indentier plugin for CSS / SCSS / Less (.css .scss .less)",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist",
"LICENSE",
"README.md",
"icon.png",
"icon.svg"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format": "prettier --write .",
"play": "powershell -File testplay/test.ps1",
"play:ruby": "powershell -File testplay/test.ps1 --mode=ruby"
},
"keywords": [
"indentier",
"plugin",
"formatter"
],
"author": "otoneko.",
"license": "MIT",
"homepage": "https://github.com/indentier/plugin-css#readme",
"bugs": {
"url": "https://github.com/indentier/plugin-css/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indentier/plugin-css.git"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"peerDependencies": {
"indentier": ">=0.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"indentier": "latest",
"prettier": "^3.8.3",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.6"
},
"version": "0.1.0"
}