-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.33 KB
/
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
36
37
38
39
40
41
42
43
{
"name": "aztec-snap",
"version": "0.1.0",
"private": true,
"description": "",
"homepage": "https://github.com/porco-rosso-j/aztec-snap#readme",
"bugs": {
"url": "https://github.com/porco-rosso-j/aztec-snap/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/porco-rosso-j/aztec-snap.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"author": "Porco <porcorossoj89@gmail.com>",
"workspaces": [
"packages/snap",
"packages/site",
"packages/lib"
],
"scripts": {
"build": "yarn workspaces foreach --parallel --topological --verbose run build",
"clean": "rm -r node_modules & rm yarn.lock",
"postinstall": "patch-package",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!**/CHANGELOG.md' '**/*.yml' --ignore-path .gitignore",
"start": "yarn workspaces foreach --parallel --interlaced --verbose run start",
"test": "echo \"TODO\"",
"reinstall": "rm -rf node_modules yarn.lock & yarn cache clean & yarn"
},
"devDependencies": {
"typescript": "5.0.4"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"patch-package": "^8.0.0",
"postinstall": "^0.10.3"
}
}