-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.37 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
{
"name": "@kitz/paka",
"version": "0.0.0-kitz-release",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jasonkuhrt/kitz.git"
},
"description": "Package utilities",
"type": "module",
"sideEffects": false,
"exports": {
".": "./src/_.ts",
"./__": "./src/__.ts"
},
"dependencies": {
"@dprint/formatter": "^0.4.1",
"@dprint/markdown": "^0.20.0",
"@kitz/core": "workspace:*",
"@kitz/fs": "workspace:*",
"@kitz/syn": "workspace:*",
"@microsoft/tsdoc": "^0.16.0",
"@types/mdast": "^4.0.4",
"effect": "4.0.0-beta.31",
"mdast": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"ts-morph": "^27.0.2",
"unified": "^11.0.5"
},
"scripts": {
"build": "tsgo -b tsconfig.build.json --clean && tsgo -b tsconfig.build.json",
"dev": "tsgo -p tsconfig.build.json --watch",
"test": "vitest run --config ../../vitest.config.ts --root .",
"test:coverage": "vitest run --config ../../vitest.config.ts --root . --coverage",
"check:cov": "bun run test:coverage",
"check:types": "tsgo --noEmit",
"check:lint": "oxlint src/",
"check:package": "publint && attw --pack --ignore-rules no-resolution cjs-resolves-to-esm internal-resolution-error"
},
"files": [
"build",
"src"
]
}