-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "lightmill",
"license": "MIT",
"type": "module",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/QuentinRoy/lightmill-js.git"
},
"scripts": {
"lint": "eslint . && prettier --check .",
"build-all": "pnpm -r build",
"test": "vitest --typecheck",
"changeset": "changeset",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"release": "pnpm -r build && changeset publish",
"publint": "node ./scripts/publint.js"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.30.1",
"@types/eslint-config-prettier": "^6.11.3",
"eslint": "^9.30.1",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-jsdoc": "^50.8.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"jiti": "^2.4.2",
"prettier": "3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"publint": "^0.3.12",
"typescript": "catalog:",
"typescript-eslint": "^8.35.1",
"vitest": "catalog:"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": "^22.x.x"
},
"dependencies": {
"@tsconfig/node-ts": "^23.6.1",
"@tsconfig/node22": "^22.0.2"
}
}