-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "root",
"version": "1.0.0",
"private": true,
"description": "Template for deploying Antelope-based snaps. See branches for specific networks.",
"homepage": "https://github.com/greymass/antelope-snap",
"bugs": {
"url": "https://github.com/greymass/antelope-snap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greymass/antelope-snap.git"
},
"license": "MIT",
"author": "Greymass Inc.",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --parallel --topological --verbose run build",
"lint": "yarn lint:misc --check",
"lint:eslint": "eslint . --cache -c js,jsx,ts,tsx",
"lint:fix": "yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!**/CHANGELOG.md' '**/*.yml' --ignore-path .gitignore",
"publish:snap": "yarn workspace snap npm publish --access public",
"publish:snap:next": "yarn workspace snap npm publish --access public --tag next",
"start": "yarn workspaces foreach --parallel --interlaced --verbose run start",
"test": "yarn workspace snap run test --passWithNoTests"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.0.0",
"@lavamoat/preinstall-always-fail": "^2.0.0",
"@metamask/eslint-config": "^12.2.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
"@metamask/eslint-config-typescript": "^12.1.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.2.18",
"prettier-plugin-svelte": "^3.2.4",
"sharp": "^0.32.6",
"typescript": "^4.7.4",
"typescript-eslint": "^8.0.0-alpha.20"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.6.0"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"sharp": true
}
}
}