-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
161 lines (161 loc) · 5.25 KB
/
Copy pathpackage.json
File metadata and controls
161 lines (161 loc) · 5.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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "@flex-development/mark",
"description": "core types and interfaces for mark",
"version": "0.0.0",
"keywords": [
"compile",
"finite",
"fsm",
"lexer",
"parse",
"spec",
"state",
"syntax",
"tokenize"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/flex-development/mark",
"repository": "https://github.com/flex-development/mark.git",
"bugs": "https://github.com/flex-development/mark/issues",
"author": {
"name": "Lexus Drumgold",
"url": "https://github.com/unicornware"
},
"publishConfig": {
"access": "public",
"diff-dst-prefix": "mark",
"diff-src-prefix": "mark",
"directory": "./",
"executableFiles": [],
"node-options": null,
"pack-destination": ".",
"parseable": true,
"prefer-dedupe": true,
"provenance": true,
"tag-version-prefix": ""
},
"type": "module",
"files": [
"LICENSE.md",
"README.md",
"dist"
],
"exports": {
"./ast": {
"mark": "./src/ast/index.mts",
"default": "./dist/ast/index.d.mts"
},
"./ast/compile": {
"mark": "./src/ast/compile.mts",
"default": "./dist/ast/compile.d.mts"
},
"./compile": {
"mark": "./src/compile/index.mts",
"default": "./dist/compile/index.d.mts"
},
"./core": {
"mark": "./src/core/index.mts",
"default": "./dist/core/index.d.mts"
},
"./package.json": "./package.json",
"./parse": {
"mark": "./src/parse/index.mts",
"default": "./dist/parse/index.d.mts"
}
},
"imports": {
"#tests/*": "./__tests__/*.mts"
},
"remarkConfig": {
"plugins": [
"@flex-development/remark-preset"
]
},
"scripts": {
"build": "yarn clean:build && tsc -p tsconfig.build.json --noEmit false && rollup -c=rollup.config.mts && trash dist/**/*.mts \"!dist/{ast,compile,core,parse}/index.d.mts\" !dist/ast/compile.d.mts && delete-empty dist",
"check:ci": "yarn dedupe --check && yarn check:format && yarn check:lint && yarn check:spelling && yarn typecheck && yarn check:types && attw --pack && yarn check:types:build",
"check:format": "dprint check --incremental=false",
"check:lint": "eslint --exit-on-fatal-error --max-warnings 0 .",
"check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
"check:types": "tsc -p tsconfig.json",
"check:types:build": "tsc -p tsconfig.build.json",
"check:upgrades": "yarn upgrade-interactive",
"clean:build": "trash \"./{dist,*.tgz}\" || exit 0",
"clean:modules": "trash ./.yarn/{cache,*.gz} ./node_modules",
"clean:pack": "trash \"./*.tgz\"",
"clean:test": "trash ./coverage && trash __tests__/reports",
"codecov": "yarn test:cov && yarn test:cov:upload",
"codecov:validate": "cat .codecov.yml | curl --data-binary @- https://codecov.io/validate",
"commitlint": "commitlint -V",
"fix:cg": "yarn fix:format && yarn fix:lint",
"fix:dedupe": "yarn dedupe --strategy=highest",
"fix:format": "dprint fmt",
"fix:lint": "yarn check:lint --cache --fix",
"postinstall": "[ -f ./.git ] && [ -f ./node_modules/.bin/husky ] && chmod +x .husky/_/* && husky || exit 0",
"postpack": "toggle-scripts +postinstall",
"postpublish": "toggle-scripts +prepack",
"prepack": "toggle-scripts -postinstall && yarn build",
"prepublishOnly": "toggle-scripts -prepack",
"release": "bash ./scripts/release.sh",
"remark": "remark .",
"test": "yarn typecheck",
"test:reports": "yarn test --merge-reports --mode=reports",
"typecheck": "yarn clean:build; vitest run --typecheck --mode=typecheck"
},
"dependencies": {
"@flex-development/unist-util-types": "1.6.1",
"@types/unist": "3.0.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.3",
"@commitlint/cli": "21.0.2",
"@commitlint/types": "21.0.1",
"@edge-runtime/vm": "5.0.0",
"@flex-development/commitlint-config": "1.0.1",
"@flex-development/eslint-config": "1.1.1",
"@flex-development/export-regex": "2.0.0",
"@flex-development/grease": "3.0.0-alpha.9",
"@flex-development/import-regex": "3.0.0",
"@flex-development/pathe": "4.0.2",
"@flex-development/remark-preset": "1.0.0",
"@flex-development/tutils": "6.0.0-alpha.25",
"@rollup/plugin-node-resolve": "16.0.3",
"@tsconfig/strictest": "2.0.8",
"@types/concat-stream": "2.0.3",
"@types/debug": "4.1.13",
"@types/is-ci": "3.0.4",
"@types/node-notifier": "8.0.5",
"@types/rollup": "0.54.0",
"@vates/toggle-scripts": "1.0.0",
"@vitest/coverage-v8": "4.1.9",
"@vitest/ui": "4.1.9",
"concat-stream": "2.0.0",
"cross-env": "10.1.0",
"cspell": "10.0.1",
"delete-empty": "3.0.0",
"devlop": "1.1.0",
"dprint": "0.54.0",
"editorconfig": "3.0.2",
"eslint": "9.39.4",
"growl": "1.10.5",
"happy-dom": "20.10.6",
"husky": "9.1.7",
"is-ci": "4.1.0",
"node-notifier": "10.0.1",
"pkg-size": "2.4.0",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"rollup": "4.62.2",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-dts": "6.4.1",
"sh-syntax": "0.5.8",
"trash-cli": "7.2.0",
"ts-dedent": "2.3.0",
"typescript": "6.0.3",
"unified": "11.0.5",
"vfile": "6.0.3",
"vitest": "4.1.9"
},
"packageManager": "yarn@4.17.0",
"sideEffects": false
}