prettier-plugin-sort 0.0.0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,24 +1,70 @@
1
1
  {
2
2
  "name": "prettier-plugin-sort",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "description": "An all-in-one Prettier plugin to sort imports, package.json keys, and more.",
5
- "main": "index.js",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
8
- },
9
5
  "keywords": [
6
+ "imports",
7
+ "order",
8
+ "organize",
9
+ "package.json",
10
+ "plugin",
10
11
  "prettier",
11
12
  "prettier-plugin",
12
- "plugin",
13
- "sort",
14
- "organize",
15
- "order",
16
- "imports",
17
- "package.json"
13
+ "sort"
18
14
  ],
19
- "author": "Yuki <admin@yuki.sh>",
15
+ "homepage": "https://github.com/xueelf/murasame",
16
+ "bugs": {
17
+ "url": "https://github.com/xueelf/murasame/issues"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/xueelf/murasame.git"
22
+ },
20
23
  "license": "MIT",
24
+ "author": "Yuki <admin@yuki.sh>",
25
+ "type": "module",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "default": "./dist/index.js"
30
+ }
31
+ },
32
+ "main": "./dist/index.js",
33
+ "types": "./dist/index.d.ts",
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "scripts": {
38
+ "build": "bun run scripts/build/index.ts",
39
+ "format": "prettier \"{src,scripts}/**/*.ts\" \"*.ts\" --write",
40
+ "lint": "eslint \"{src,scripts}/**/*.ts\" \"*.ts\"",
41
+ "prepare": "husky",
42
+ "test": "bun test"
43
+ },
44
+ "devDependencies": {
45
+ "@commitlint/cli": "^20.5.0",
46
+ "@commitlint/config-conventional": "^20.5.0",
47
+ "@commitlint/types": "^20.5.0",
48
+ "@eslint/js": "^10.0.1",
49
+ "@types/bun": "^1.3.13",
50
+ "bun-plugin-dts": "^0.4.0",
51
+ "eslint": "^10.2.1",
52
+ "husky": "^9.1.7",
53
+ "prettier": "^3.8.3",
54
+ "typescript": "^6.0.3",
55
+ "typescript-eslint": "^8.59.0"
56
+ },
21
57
  "peerDependencies": {
22
58
  "prettier": ">=3.0.0"
59
+ },
60
+ "devEngines": {
61
+ "runtime": {
62
+ "name": "bun",
63
+ "onFail": "warn"
64
+ },
65
+ "packageManager": {
66
+ "name": "bun",
67
+ "onFail": "warn"
68
+ }
23
69
  }
24
70
  }
package/index.js DELETED
@@ -1 +0,0 @@
1
- console.log('Ciallo~(∠·ω< )⌒★');