-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 822 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 822 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
30
31
32
33
34
35
36
{
"name": "@cogeotiff/base",
"version": "0.1.0",
"scripts": {
"clean": "tsc -b --clean && rimraf 'packages/*/build'",
"build": "tsc -b --pretty",
"build-watch": "tsc -b --pretty --watch",
"lint": "biome check --write packages/",
"check": "biome check packages/",
"test": "node --test \"packages/*/build/**/*.test.js\""
},
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"private": true,
"keywords": [],
"author": "Blayne Chard",
"license": "ISC",
"description": "",
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@types/node": "^20.0.0",
"lerna": "^9.0.4",
"rimraf": "^4.1.2",
"typescript": "^5.9.3"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/**"
]
}
}