@fenril058/textlint-plugin-org 0.4.0 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +10 -11
  2. package/package.json +60 -59
package/README.md CHANGED
@@ -15,13 +15,12 @@ What is textlint plugin? Please see https://github.com/textlint/textlint/blob/ma
15
15
  ## Try run by Docker
16
16
 
17
17
  ```shell
18
- $ docker run -v "$(pwd)":/work \
19
- -w /work \
20
- --rm -it ghcr.io/fenril058/textlint-plugin-org \
21
- textlint \
22
- --plugin org \
23
- --rule textlint-rule-preset-ja-technical-writing \
24
- *.org
18
+ docker run -v "$(pwd)":/work \
19
+ --rm -it ghcr.io/fenril058/textlint-plugin-org \
20
+ textlint \
21
+ --plugin org \
22
+ --rule textlint-rule-preset-ja-technical-writing \
23
+ *.org
25
24
  ```
26
25
 
27
26
  ## Install
@@ -56,19 +55,19 @@ $ textlint --plugin org test.org
56
55
  ## Test
57
56
 
58
57
  ```sh
59
- npm test
58
+ pnpm test
60
59
  ```
61
60
 
62
61
  ## Lint
63
62
 
64
63
  ```sh
65
- npm run lint
64
+ pnpm run lint
66
65
  ```
67
66
 
68
67
  ## Release
69
68
 
70
69
  ```sh
71
- npm version patch
70
+ pnpm version patch
72
71
  git push origin main --follow-tags
73
- npm publish
72
+ pnpm publish
74
73
  ```
package/package.json CHANGED
@@ -1,60 +1,61 @@
1
1
  {
2
- "name": "@fenril058/textlint-plugin-org",
3
- "version": "0.4.0",
4
- "description": "Maintained fork of textlint-plugin-org for Org mode",
5
- "repository": {
6
- "type": "git",
7
- "url": "git+https://github.com/fenril058/textlint-plugin-org.git"
8
- },
9
- "author": "Kijima Daigo",
10
- "contributors": [
11
- "ril"
12
- ],
13
- "license": "GPLv3",
14
- "bugs": {
15
- "url": "https://github.com/fenril058/textlint-plugin-org/issues"
16
- },
17
- "homepage": "https://github.com/fenril058/textlint-plugin-org#readme",
18
- "publishConfig": {
19
- "access": "public"
20
- },
21
- "main": "lib/index.js",
22
- "files": [
23
- "lib",
24
- "src"
25
- ],
26
- "directories": {
27
- "test": "test"
28
- },
29
- "scripts": {
30
- "build": "tsc -b && tsc -b tsconfig.json",
31
- "prepublishOnly": "npm run build",
32
- "test": "tsx --test",
33
- "watch": "tsc -b --watch",
34
- "lint": "npx eslint src/**/*.ts"
35
- },
36
- "dependencies": {
37
- "@textlint/ast-node-types": "^15.6.0",
38
- "orga": "4.7.1",
39
- "structured-source": "^4.0.0",
40
- "unist-util-visit": "^5.1.0"
41
- },
42
- "devDependencies": {
43
- "@eslint/js": "^10.0.1",
44
- "@textlint/ast-tester": "^15.6.0",
45
- "@textlint/kernel": "^15.6.0",
46
- "@types/node": "^26.0.1",
47
- "@typescript-eslint/eslint-plugin": "^8.59.2",
48
- "@typescript-eslint/parser": "^8.59.2",
49
- "eslint": "^10.3.0",
50
- "eslint-import-resolver-typescript": "^4.4.4",
51
- "eslint-plugin-import-x": "^4.16.2",
52
- "globals": "^17.6.0",
53
- "textlint-rule-max-comma": "^4.0.0",
54
- "ts-node": "^10.9.2",
55
- "ts-node-test-register": "^10.0.0",
56
- "tsx": "^4.21.0",
57
- "typescript": "^6.0.3",
58
- "typescript-eslint": "^8.59.2"
59
- }
60
- }
2
+ "name": "@fenril058/textlint-plugin-org",
3
+ "version": "0.4.1",
4
+ "description": "Maintained fork of textlint-plugin-org for Org mode",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/fenril058/textlint-plugin-org.git"
8
+ },
9
+ "author": "Kijima Daigo",
10
+ "contributors": [
11
+ "ril"
12
+ ],
13
+ "license": "GPLv3",
14
+ "bugs": {
15
+ "url": "https://github.com/fenril058/textlint-plugin-org/issues"
16
+ },
17
+ "homepage": "https://github.com/fenril058/textlint-plugin-org#readme",
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "main": "lib/index.js",
22
+ "files": [
23
+ "lib",
24
+ "src"
25
+ ],
26
+ "directories": {
27
+ "test": "test"
28
+ },
29
+ "dependencies": {
30
+ "@textlint/ast-node-types": "^15.6.0",
31
+ "orga": "4.7.1",
32
+ "structured-source": "^4.0.0",
33
+ "unist-util-visit": "^5.1.0"
34
+ },
35
+ "devDependencies": {
36
+ "@eslint/js": "^10.0.1",
37
+ "@textlint/ast-tester": "^15.6.0",
38
+ "@textlint/kernel": "^15.6.0",
39
+ "@textlint/types": "^15.7.1",
40
+ "@types/node": "^26.0.1",
41
+ "@types/unist": "^3.0.3",
42
+ "@typescript-eslint/eslint-plugin": "^8.59.2",
43
+ "@typescript-eslint/parser": "^8.59.2",
44
+ "eslint": "^10.3.0",
45
+ "eslint-import-resolver-typescript": "^4.4.4",
46
+ "eslint-plugin-import-x": "^4.16.2",
47
+ "globals": "^17.6.0",
48
+ "textlint-rule-max-comma": "^4.0.0",
49
+ "ts-node": "^10.9.2",
50
+ "ts-node-test-register": "^10.0.0",
51
+ "tsx": "^4.21.0",
52
+ "typescript": "^6.0.3",
53
+ "typescript-eslint": "^8.59.2"
54
+ },
55
+ "scripts": {
56
+ "build": "tsc -b && tsc -b tsconfig.json",
57
+ "test": "tsx --test",
58
+ "watch": "tsc -b --watch",
59
+ "lint": "pnpx eslint src/**/*.ts"
60
+ }
61
+ }