-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1018 Bytes
/
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
{
"name": "npm-provenance-monorepo",
"version": "0.0.0",
"private": true,
"description": "npm provenance monorepo",
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"build": "tsc --build tsconfig.build.json",
"pretest": "npm run build",
"lint": "eslint --fix --ext .ts packages/**",
"lint:check": "eslint --max-warnings 0 --ext .ts packages/**",
"release": "npm run build && changeset publish"
},
"license": "Artistic-2.0",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@total-typescript/shoehorn": "^0.1.1",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"shx": "^0.3.3",
"typescript": "^5.2.2"
},
"workspaces": [
"./packages/*"
],
"engines": {
"node": "^16.14.0 || >=18.0.0"
}
}