-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.45 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.45 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@textlint/script-compiler",
"version": "0.18.5",
"description": "textlint script compiler tool",
"keywords": [
"textlint",
"webpack",
"bundler",
"compiler"
],
"homepage": "https://github.com/textlint/editor/tree/master/packages/@textlint/script-compiler/",
"bugs": {
"url": "https://github.com/textlint/editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/editor.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"bin": {
"textlint-script-compiler": "./bin/cmd.js"
},
"files": [
"bin/",
"lib/",
"patch/"
],
"scripts": {
"build": "tsc -p .",
"clean": "rimraf lib/",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepublish": "npm run --if-present build",
"test": "npm run build:example",
"watch": "tsc -p . --watch",
"prebuild:example": "npm run build",
"build:example": "node ./bin/cmd.js --outputDir ./example/ --metadataName test --metadataNamespace example.com"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@babel/core": "^7.27.4",
"@textlint/config-inliner": "workspace:*",
"@textlint/config-loader": "^15.0.1",
"@textlint/config-partial-parser": "workspace:*",
"@textlint/kernel": "^15.0.1",
"@textlint/module-interop": "^15.0.1",
"@textlint/runtime-helper": "workspace:*",
"@textlint/script-parser": "workspace:*",
"@textlint/textlint-plugin-markdown": "^15.0.1",
"@textlint/textlint-plugin-text": "^15.0.1",
"@textlint/types": "^15.0.1",
"babel-loader": "^8.2.2",
"babel-plugin-static-fs": "^3.0.0",
"meow": "^9.0.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"read-pkg": "^5.2.0",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.91.0"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.3",
"@types/webpack": "^5.28.5",
"mocha": "^11.7.0",
"prettier": "^3.6.0",
"textlint-rule-no-dropping-the-ra": "^3.0.0",
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
"textlint-rule-prh": "^6.0.0",
"ts-node": "^10.9.2",
"ts-node-test-register": "^10.0.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
}
}