-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.33 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.33 KB
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
{
"name": "linear-bos-components",
"version": "0.0.1",
"description": "LiNEAR BOS Components",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"start:testnet": "LINEAR_BOS_URL=https://test.near.org/linear-builder.testnet/widget/LiNEAR && open $LINEAR_BOS_URL && echo \"Preview at: $LINEAR_BOS_URL\"",
"start:mainnet": "LINEAR_BOS_URL=https://dev.near.org/linearprotocol.near/widget/LiNEAR && open $LINEAR_BOS_URL && echo \"Preview at: $LINEAR_BOS_URL\"",
"dev": "yarn start:testnet && bos-loader linear-builder.testnet --path src",
"dev:mainnet": "yarn start:mainnet && bos-loader linearprotocol.near --path src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linear-protocol/linear-bos-components.git"
},
"keywords": [
"linear",
"bos",
"component"
],
"author": "LiNEAR Protocol",
"license": "MIT",
"bugs": {
"url": "https://github.com/linear-protocol/linear-bos-components/issues"
},
"homepage": "https://github.com/linear-protocol/linear-bos-components#readme",
"engines": {
"node": ">=14"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8"
}
}