-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.28 KB
/
package.json
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
{
"name": "literate-ts",
"version": "2.5.0",
"description": "Code samples that scale",
"exports": "./dist/index.js",
"type": "module",
"repository": "https://github.com/danvk/literate-ts.git",
"author": "Dan Vanderkam <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"check": "node --loader=ts-node/esm --no-warnings index.ts",
"check:asciidoc": "yarn run check examples/asciidoc/sample.asciidoc",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns 'dist|e2e'",
"baselines:check": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern e2e",
"baselines:update": "NODE_OPTIONS=--experimental-vm-modules UPDATE_MODE=true jest --testPathPattern e2e"
},
"bin": {
"literate-ts": "./bin/literate-ts.js"
},
"dependencies": {
"chalk": "^5.3.0",
"fast-glob": "^3.3.1",
"fast-json-stable-stringify": "^2.1.0",
"find-cache-dir": "^5.0.0",
"fs-extra": "^11.0.0",
"html-to-text": "^9.0.5",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.2.0",
"lodash": "^4.17.15",
"lz-string": "^1.5.0",
"ora": "^8.0.0",
"read-pkg-up": "^11.0.0",
"tmp": "^0.2.0",
"yargs": "^17.0.0"
},
"peerDependencies": {
"typescript": ">4.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/find-cache-dir": "^5.0.0",
"@types/fs-extra": "^11.0.0",
"@types/html-to-text": "^9.0.1",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.138",
"@types/node": "22.13.10",
"@types/ora": "^3.2.0",
"@types/tmp": "^0.2.0",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.46.0",
"jest": "^29.6.2",
"knip": "^5.7.3",
"nyc": "^17.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.5.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": true
}
}