-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 947 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
{
"name": "@filecoin-station/piece-indexer-monorepo",
"private": true,
"version": "0.1.0",
"type": "module",
"workspaces": [
"api",
"indexer",
"repository"
],
"scripts": {
"lint": "prettier --check . && standard",
"lint:fix": "prettier --write . && standard --fix .",
"test:types": "tsc -p .",
"test:unit": "npm test --workspaces --if-present",
"test": "npm run lint && npm run test:types && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/filecoin-station/piece-indexer.git"
},
"license": "(Apache-2.0 AND MIT)",
"bugs": {
"url": "https://github.com/filecoin-station/piece-indexer/issues"
},
"homepage": "https://github.com/filecoin-station/piece-indexer#readme",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.10.10",
"prettier": "^3.4.2",
"standard": "^17.1.2",
"typescript": "^5.7.3"
}
}