-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 966 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 966 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
{
"name": "potygen",
"version": "0.2.0",
"private": true,
"description": "Postgres Typescript Generator - types for pg queries",
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
"test": "yarn workspaces foreach --verbose run test",
"test:general": "yarn workspaces foreach --verbose run test --testPathIgnorePatterns='test/version/*'",
"lint": "yarn workspaces foreach --parallel --verbose run lint",
"build": "yarn workspaces foreach --parallel --topological-dev --verbose run build",
"publish": "yarn workspaces foreach --no-private --verbose npm publish --tolerate-republish --access public",
"build:readme": "build-readme README.md https://github.com/ivank/potygen/tree/main"
},
"devDependencies": {
"@ikerin/build-readme": "^1.1.1",
"prettier": "npm:@potygen/prettier@^3.0.3",
"typescript": "^5.2.2"
},
"workspaces": [
"packages/*",
"examples/*"
],
"packageManager": "yarn@3.6.4"
}