-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
{
"name": "molt",
"repository": "[email protected]:jasonkuhrt/molt.git",
"author": "Jason Kuhrt",
"packageManager": "[email protected]",
"license": "MIT",
"type": "module",
"scripts": {
"format": "dprint fmt",
"format:check": "dprint check",
"lint": "eslint . --ext .ts,.tsx --fix",
"check:lint": "eslint . --ext .ts,.tsx --max-warnings 0",
"check:types": "tsc --noEmit",
"release:@molt/command": "pnpm release --package @molt/command",
"release:@molt/name": "pnpm release --package @molt/name",
"release:molt": "pnpm release --package molt",
"release": "tsx scripts/release.ts"
},
"devDependencies": {
"@octokit/core": "^5.0.1",
"@swc/core": "1.3.94",
"@tsconfig/node14": "14.1.0",
"@tsconfig/node16": "16.1.1",
"@tsconfig/recommended": "1.0.3",
"@types/node": "20.8.7",
"@types/semver": "^7.5.4",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"eslint": "8.52.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-only-warn": "1.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-tsdoc": "0.2.17",
"execa": "8.0.1",
"fast-glob": "3.3.1",
"fs-jetpack": "5.1.0",
"markdown-toc": "^1.2.0",
"nodemon": "^3.0.1",
"semver": "^7.5.4",
"semver-regex": "4.0.5",
"tsx": "^4.0.0",
"typescript": "5.2.2",
"vitest": "0.34.6",
"zod": "3.22.4"
},
"dependencies": {
"alge": "0.8.1"
}
}