-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.23 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.23 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
{
"name": "@tmlmt/cooklang-parser",
"version": "2.1.8",
"description": "Cooklang parsers and utilities",
"author": "Thomas Lamant <tom@tmlmt.com>",
"packageManager": "pnpm@10.21.0",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"clean": "rimraf dist",
"build": "pnpm run clean && tsup",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noemit && eslint",
"format": "prettier --write .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"predocs:dev": "typedoc",
"docs:dev": "vitepress dev docs",
"predocs:build": "typedoc",
"docs:build": "vitepress build docs",
"predocs:preview": "typedoc",
"docs:preview": "vitepress preview docs",
"release": "node scripts/release.mjs"
},
"devDependencies": {
"@eslint/compat": "1.4.1",
"@eslint/js": "9.39.1",
"@iconify-json/material-symbols": "1.2.59",
"@types/big.js": "6.2.2",
"@types/node": "22.19.0",
"@vitest/coverage-v8": "4.0.8",
"@vitest/ui": "4.0.8",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-tsdoc": "0.4.0",
"execa": "9.6.0",
"globals": "16.5.0",
"human-regex": "2.1.5",
"prettier": "3.6.2",
"rimraf": "6.1.0",
"tsup": "8.5.0",
"typedoc": "0.28.14",
"typedoc-plugin-markdown": "4.9.0",
"typedoc-vitepress-theme": "1.1.2",
"typescript": "5.9.3",
"typescript-eslint": "8.46.4",
"vitepress": "2.0.0-alpha.15",
"vitest": "4.0.8",
"vue": "3.5.26"
},
"bugs": {
"url": "https://github.com/tmlmt/cooklang-parser/issues",
"email": "tom@tmlmt.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmlmt/cooklang-parser.git"
},
"homepage": "https://cooklang-parser.tmlmt.com",
"keywords": [
"cooklang",
"parser",
"typescript",
"cooking",
"recipes"
],
"license": "MIT",
"dependencies": {
"big.js": "7.0.1"
}
}