-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
66
67
68
69
70
71
72
{
"name": "@base-org/build-onchain-apps",
"version": "0.5.0",
"repository": "https://github.com/base-org/build-onchain-apps.git",
"license": "Apache-2.0",
"dependencies": {
"@nx/devkit": "^17.1.2",
"@nx/js": "^17.1.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"figlet": "^1.7.0",
"got": "^11.8.5",
"inquirer": "^8.2.5",
"nx": "^17.1.2",
"rimraf": "^5.0.5",
"tar": "4.4.18",
"tslib": "^2.3.0"
},
"scripts": {
"build": "nx build",
"test": "nx test",
"format": "nx format",
"format:check": "nx format:check",
"lint": "nx lint",
"local:start-registry": "nx local-registry",
"local:publish": "nx publish @base-org/build-onchain-apps",
"release:check": "changeset status --verbose --since=origin/main",
"release:publish": "yarn install && yarn build && changeset publish",
"release:version": "changeset version && yarn install --lockfile-only"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@nx/eslint": "17.1.2",
"@nx/eslint-plugin": "17.1.2",
"@nx/vite": "17.1.2",
"@nx/workspace": "17.1.2",
"@swc-node/register": "~1.6.7",
"@swc/core": "~1.3.85",
"@types/inquirer": "^8.2.5",
"@types/node": "18.7.1",
"@types/tar": "4.0.3",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitest/coverage-v8": "~0.32.0",
"@vitest/ui": "~0.32.0",
"eslint": "~8.46.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^2.6.2",
"typescript": "~5.2.2",
"verdaccio": "^5.27.0",
"vite": "~4.3.9",
"vitest": "~0.32.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"src/",
"dist/"
],
"nx": {
"includedScripts": []
},
"type": "commonjs",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"bin": {
"build-onchain-apps": "./dist/src/index.js"
}
}