-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 835 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 835 Bytes
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
{
"name": "pi-extensions",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint": "eslint packages/",
"check": "npm run check --workspaces --if-present",
"lint:mega": "npx mega-linter-runner --flavor javascript --release v9",
"lint:mega:fix": "npx mega-linter-runner --flavor javascript --release v9 --fix"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"globals": "^16.0.0",
"typescript": "^5.7.0"
}
}