-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.42 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.42 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
{
"name": "@gluestack/bolt-framework",
"version": "0.0.1",
"description": "bolt framework",
"private": true,
"scripts": {
"install:all": "npm install --workspaces --if-present",
"link:all": "npm link --workspaces --if-present && npm run fix:permission",
"build:all": "npm run sync:readme && npm run build:boltvm && npm run build:bolt && npm run fix:permission",
"build:boltvm": "npm run build --workspace @gluestack/boltvm",
"build:bolt": "npm run build --workspace @gluestack/bolt",
"watch:boltvm": "npm run watch --workspace @gluestack/boltvm",
"watch:bolt": "npm run watch --workspace @gluestack/bolt",
"fix:permission": "chmod +x ./packages/bolt/build/index.js",
"sync:readme": "cp -f README.md ./packages/bolt/README.md && cp -f README.md ./packages/boltvm/README.md",
"publish:boltvm": "npm run build:boltvm && cd packages/boltvm && npm publish --access public",
"publish:bolt": "npm run build:all && cd packages/bolt && npm publish --access public"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gluestack-v2/bolt-framework.git"
},
"keywords": [
"gluestack",
"v2",
"bolt",
"boltvm",
"cli"
],
"author": "Gluestack.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/gluestack-v2/bolt-framework/issues"
},
"homepage": "https://github.com/gluestack-v2/bolt-framework#readme"
}